2017-04-24 20:46:22 +02:00
|
|
|
|
|
|
|
|
plugins_(
|
2019-09-17 12:50:38 +02:00
|
|
|
"com.geirsson" % "sbt-ci-release" % "1.3.2",
|
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-08-09 11:55:57 +02:00
|
|
|
"io.get-coursier" % "sbt-shading" % sbtCoursierVersion,
|
|
|
|
|
"org.scala-sbt" % "sbt-contraband" % "0.4.4"
|
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
|