sbt/project/plugins.sbt

18 lines
583 B
Plaintext
Raw Normal View History

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",
"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",
"io.get-coursier" % "sbt-shading" % sbtCoursierVersion
// "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