mirror of https://github.com/sbt/sbt.git
18 lines
583 B
Scala
18 lines
583 B
Scala
|
|
plugins_(
|
|
"com.geirsson" % "sbt-ci-release" % "1.2.6",
|
|
"io.get-coursier" % "sbt-coursier" % sbtCoursierVersion,
|
|
"com.typesafe" % "sbt-mima-plugin" % "0.3.0",
|
|
"com.jsuereth" % "sbt-pgp" % "1.1.2",
|
|
"io.get-coursier" % "sbt-shading" % sbtCoursierVersion
|
|
// "org.scala-sbt" % "sbt-contraband" % "0.4.3"
|
|
)
|
|
|
|
libs ++= Seq(
|
|
"org.scala-sbt" %% "scripted-plugin" % sbtVersion.value
|
|
)
|
|
|
|
|
|
def plugins_(modules: ModuleID*) = modules.map(addSbtPlugin)
|
|
def libs = libraryDependencies
|