2017-04-24 20:46:22 +02:00
|
|
|
|
|
|
|
|
plugins_(
|
2019-06-20 09:42:22 +02:00
|
|
|
"com.geirsson" % "sbt-ci-release" % "1.2.6",
|
2019-02-26 13:29:55 +01:00
|
|
|
"io.get-coursier" % "sbt-coursier" % sbtCoursierVersion,
|
2018-06-20 16:30:25 +02:00
|
|
|
"com.typesafe" % "sbt-mima-plugin" % "0.3.0",
|
2019-01-13 23:51:22 +01:00
|
|
|
"com.jsuereth" % "sbt-pgp" % "1.1.2",
|
2019-02-26 13:29:55 +01:00
|
|
|
"io.get-coursier" % "sbt-shading" % sbtCoursierVersion
|
2019-05-28 12:48:16 +02:00
|
|
|
// "org.scala-sbt" % "sbt-contraband" % "0.4.3"
|
2017-04-24 20:46:22 +02:00
|
|
|
)
|
|
|
|
|
|
2017-04-24 20:46:23 +02:00
|
|
|
libs ++= Seq(
|
2019-03-22 15:10:57 +01:00
|
|
|
"org.scala-sbt" %% "scripted-plugin" % sbtVersion.value
|
2017-04-24 20:46:23 +02:00
|
|
|
)
|
2017-04-24 20:46:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def plugins_(modules: ModuleID*) = modules.map(addSbtPlugin)
|
|
|
|
|
def libs = libraryDependencies
|