mirror of https://github.com/sbt/sbt.git
28 lines
1.0 KiB
Scala
28 lines
1.0 KiB
Scala
|
|
plugins_(
|
|
"io.get-coursier" % "sbt-coursier" % coursierVersion,
|
|
"com.typesafe" % "sbt-mima-plugin" % "0.1.18",
|
|
"org.xerial.sbt" % "sbt-pack" % "0.10.1",
|
|
"com.jsuereth" % "sbt-pgp" % "1.1.0",
|
|
"com.lightbend.sbt" % "sbt-proguard" % "0.3.0",
|
|
"com.github.gseitz" % "sbt-release" % "1.0.7",
|
|
"org.scala-js" % "sbt-scalajs" % "0.6.22",
|
|
"io.get-coursier" % "sbt-shading" % coursierVersion,
|
|
"org.xerial.sbt" % "sbt-sonatype" % "2.3",
|
|
"com.timushev.sbt" % "sbt-updates" % "0.3.4",
|
|
"org.tpolecat" % "tut-plugin" % "0.6.3"
|
|
)
|
|
|
|
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-M5"
|
|
)
|
|
|
|
// required for just released things
|
|
resolvers += Resolver.sonatypeRepo("releases")
|
|
|
|
|
|
def plugins_(modules: ModuleID*) = modules.map(addSbtPlugin)
|
|
def libs = libraryDependencies
|