sbt/project/plugins.sbt

28 lines
1.0 KiB
Plaintext
Raw Normal View History

2017-04-24 20:46:22 +02:00
plugins_(
2017-04-24 20:46:23 +02:00
"io.get-coursier" % "sbt-coursier" % coursierVersion,
2017-08-04 16:20:02 +02:00
"com.typesafe" % "sbt-mima-plugin" % "0.1.15",
2017-04-24 20:46:23 +02:00
"org.xerial.sbt" % "sbt-pack" % "0.8.2",
2017-05-15 15:32:50 +02:00
"com.jsuereth" % "sbt-pgp" % "1.0.1",
"com.typesafe.sbt" % "sbt-proguard" % "0.2.3",
"com.github.gseitz" % "sbt-release" % "1.0.5",
2017-08-04 16:20:02 +02:00
"org.scala-js" % "sbt-scalajs" % "0.6.19",
2017-04-24 20:46:23 +02:00
"io.get-coursier" % "sbt-shading" % coursierVersion,
"org.xerial.sbt" % "sbt-sonatype" % "1.1",
2017-05-15 15:32:49 +02:00
"com.timushev.sbt" % "sbt-updates" % "0.3.0",
2017-06-01 09:34:03 +02:00
"org.tpolecat" % "tut-plugin" % "0.5.2"
2017-04-24 20:46:22 +02:00
)
2017-04-24 20:46:23 +02:00
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"
)
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