2015-05-11 16:12:49 +02:00
|
|
|
// need this to resolve http://jcenter.bintray.com/org/jenkins-ci/jenkins/1.26/
|
|
|
|
|
// which is used by plugin "org.kohsuke" % "github-api" % "1.68"
|
2015-05-12 14:18:12 +03:00
|
|
|
resolvers += "Bintray Jcenter" at "https://jcenter.bintray.com/"
|
2018-12-03 23:14:27 +08:00
|
|
|
libraryDependencies += "org.kohsuke" % "github-api" % "1.95"
|
2015-05-11 16:12:49 +02:00
|
|
|
|
2012-09-20 21:50:35 +02:00
|
|
|
// these comment markers are for including code into the docs
|
|
|
|
|
//#sbt-multi-jvm
|
2017-10-30 03:13:14 +02:00
|
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-multi-jvm" % "0.4.0")
|
2012-09-20 21:50:35 +02:00
|
|
|
//#sbt-multi-jvm
|
2012-01-12 12:47:11 +04:00
|
|
|
|
2018-07-24 08:25:29 +02:00
|
|
|
addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.8.2")
|
|
|
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.4")
|
|
|
|
|
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.3.0")
|
2018-12-03 23:14:27 +08:00
|
|
|
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2")
|
2018-07-24 08:25:29 +02:00
|
|
|
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.2")
|
|
|
|
|
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "2.1.0")
|
2018-05-16 19:43:21 +08:00
|
|
|
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.4")
|
2018-12-03 23:14:27 +08:00
|
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.15")
|
2017-10-30 03:13:14 +02:00
|
|
|
addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1")
|
2018-07-24 08:25:29 +02:00
|
|
|
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.4")
|
2018-11-07 10:19:02 +02:00
|
|
|
addSbtPlugin("com.lightbend.akka" % "sbt-paradox-akka" % "0.14")
|
2018-12-03 23:14:27 +08:00
|
|
|
addSbtPlugin("com.lightbend" % "sbt-whitesource" % "0.1.13")
|
2018-07-24 08:25:29 +02:00
|
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")
|
|
|
|
|
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.1") // for advanced PR validation features
|
2018-03-13 23:45:55 +09:00
|
|
|
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.0.0") // for maintenance of copyright file header
|
2018-03-01 21:35:00 +09:00
|
|
|
|
|
|
|
|
// used for @unidoc directive
|
2018-12-03 23:14:27 +08:00
|
|
|
libraryDependencies += "io.github.classgraph" % "classgraph" % "4.4.12"
|