stasis/project/plugins.sbt

42 lines
1.7 KiB
Text
Raw Normal View History

2019-06-25 20:12:40 +00:00
logLevel := Level.Warn
resolvers ++= Seq(
Classpaths.sbtPluginReleases,
2019-09-25 16:14:54 +00:00
"Local Maven Repository" at Path.userHome.asFile.toURI.toURL + ".m2/repository",
"Local Ivy2 Cache Repository" at Path.userHome.asFile.toURI.toURL + ".ivy2/cache",
Resolver.sonatypeRepo("snapshots"),
2019-06-25 20:12:40 +00:00
Resolver.typesafeRepo("releases"),
Resolver.sonatypeRepo("releases"),
Resolver.bintrayIvyRepo("jetbrains", "sbt-plugins")
)
2019-09-25 16:14:54 +00:00
// Use the Dotty compiler for Scala code.
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.3.4")
// Makes our code tidy
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.0.5")
// Revolver allows us to use re-start and work a lot faster!
addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")
// Native Packager allows us to create standalone jar
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.4.1")
// Documentation plugins
2019-11-22 02:23:59 +00:00
addSbtPlugin("org.tpolecat" % "tut-plugin" % "0.6.13")
2019-09-25 16:14:54 +00:00
addSbtPlugin("com.47deg" % "sbt-microsites" % "0.9.4")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
2019-11-22 02:23:59 +00:00
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.0.2")
2019-09-25 16:14:54 +00:00
// Other, TBD
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.4")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.7")
2019-06-25 20:12:40 +00:00
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.2.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")
2019-06-26 17:27:13 +00:00
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.3") //coursier.util.Properties.version) // "2.0.0-RC2-3"
2019-06-25 20:12:40 +00:00
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.7")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.4")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.18")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")