2017-04-24 20:46:22 +02:00
|
|
|
|
|
|
|
|
plugins_(
|
2017-04-24 20:46:23 +02:00
|
|
|
"io.get-coursier" % "sbt-coursier" % coursierVersion,
|
2017-10-20 02:48:12 +02:00
|
|
|
"com.typesafe" % "sbt-mima-plugin" % "0.1.18",
|
|
|
|
|
"org.xerial.sbt" % "sbt-pack" % "0.9.1",
|
|
|
|
|
"com.jsuereth" % "sbt-pgp" % "1.1.0",
|
|
|
|
|
"com.lightbend.sbt" % "sbt-proguard" % "0.3.0",
|
|
|
|
|
"com.github.gseitz" % "sbt-release" % "1.0.6",
|
|
|
|
|
"org.scala-js" % "sbt-scalajs" % "0.6.20",
|
2017-04-24 20:46:23 +02:00
|
|
|
"io.get-coursier" % "sbt-shading" % coursierVersion,
|
2017-10-20 02:48:12 +02:00
|
|
|
"org.xerial.sbt" % "sbt-sonatype" % "2.0",
|
|
|
|
|
"com.timushev.sbt" % "sbt-updates" % "0.3.3",
|
2017-10-26 14:53:18 +02:00
|
|
|
"org.tpolecat" % "tut-plugin" % "0.6.1"
|
2017-04-24 20:46:22 +02:00
|
|
|
)
|
|
|
|
|
|
2017-04-24 20:46:23 +02:00
|
|
|
libs ++= Seq(
|
2017-10-26 14:53:18 +02:00
|
|
|
"org.scala-sbt" %% "scripted-plugin" % sbtVersion.value,
|
2017-04-24 20:46:23 +02:00
|
|
|
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"
|
|
|
|
|
)
|
2017-04-24 20:46:22 +02:00
|
|
|
|
2017-05-06 16:49:32 +02:00
|
|
|
// required for just released things
|
|
|
|
|
resolvers += Resolver.sonatypeRepo("releases")
|
|
|
|
|
|
2017-04-24 20:46:22 +02:00
|
|
|
|
|
|
|
|
def plugins_(modules: ModuleID*) = modules.map(addSbtPlugin)
|
|
|
|
|
def libs = libraryDependencies
|