mirror of https://github.com/sbt/sbt.git
23 lines
864 B
Scala
23 lines
864 B
Scala
|
|
plugins_(
|
|
"com.geirsson" % "sbt-ci-release" % "1.2.1",
|
|
"org.scala-sbt" % "sbt-contraband" % "0.4.1",
|
|
"io.get-coursier" % "sbt-coursier" % coursierVersion,
|
|
"com.typesafe" % "sbt-mima-plugin" % "0.3.0",
|
|
"com.jsuereth" % "sbt-pgp" % "1.1.1",
|
|
"io.get-coursier" % "sbt-shading" % coursierVersion
|
|
)
|
|
|
|
libs ++= Seq(
|
|
"org.scala-sbt" %% "scripted-plugin" % sbtVersion.value,
|
|
compilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full), // for shapeless / auto type class derivations
|
|
"com.github.alexarchambault" %% "argonaut-shapeless_6.2" % "1.2.0-M8"
|
|
)
|
|
|
|
// required for just released things
|
|
resolvers += Resolver.sonatypeRepo("releases")
|
|
|
|
|
|
def plugins_(modules: ModuleID*) = modules.map(addSbtPlugin)
|
|
def libs = libraryDependencies
|