2023-02-14 13:45:08 +01:00
|
|
|
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.1")
|
2019-10-24 10:35:37 -04:00
|
|
|
|
2021-12-07 11:21:02 +01:00
|
|
|
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.7.0")
|
2021-05-03 12:05:51 +02:00
|
|
|
addSbtPlugin("com.lightbend.sbt" % "sbt-bill-of-materials" % "1.0.2")
|
2022-11-02 09:19:40 +01:00
|
|
|
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
|
2021-12-07 11:20:19 +01:00
|
|
|
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.33")
|
2019-12-04 23:39:56 +01:00
|
|
|
// sbt-osgi 0.9.5 is available but breaks including jdk9-only classes
|
2020-10-08 13:33:20 +02:00
|
|
|
// sbt-osgi 0.9.6 is available but breaks populating akka-protobuf-v3
|
|
|
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.4")
|
2020-10-27 16:53:23 +01:00
|
|
|
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.8.1")
|
2021-11-08 10:22:59 +01:00
|
|
|
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
|
2022-04-06 10:49:15 +02:00
|
|
|
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2")
|
2021-06-10 21:22:49 +02:00
|
|
|
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")
|
2017-10-30 03:13:14 +02:00
|
|
|
addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1")
|
2023-02-10 09:55:33 +01:00
|
|
|
|
2022-05-06 10:07:00 +02:00
|
|
|
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.7.0")
|
2019-01-15 12:23:27 +11:00
|
|
|
addSbtPlugin("com.hpe.sbt" % "sbt-pull-request-validator" % "1.0.0")
|
2021-09-10 13:48:44 +02:00
|
|
|
addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.30")
|
2021-06-08 09:05:16 +02:00
|
|
|
|
2021-11-08 10:23:38 +01:00
|
|
|
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
|
2020-04-28 11:49:42 +02:00
|
|
|
addSbtPlugin("com.lightbend.sbt" % "sbt-publish-rsync" % "0.2")
|
2023-02-02 22:46:41 +01:00
|
|
|
addSbtPlugin("com.github.pjfanning" % "sbt-source-dist" % "0.1.2")
|
2023-02-15 18:17:14 +01:00
|
|
|
addSbtPlugin("org.mdedetrich" % "sbt-apache-sonatype" % "0.1.1")
|
2022-04-20 21:07:34 +08:00
|
|
|
addSbtPlugin("com.github.reibitto" % "sbt-welcome" % "0.2.2")
|
2023-02-10 09:55:33 +01:00
|
|
|
|
|
|
|
|
// allow access to snapshots for pekko-sbt-paradox
|
|
|
|
|
resolvers += "Apache Nexus Snapshots".at("https://repository.apache.org/content/repositories/snapshots/")
|
|
|
|
|
|
|
|
|
|
// We have to deliberately use older versions of sbt-paradox because current Pekko sbt build
|
|
|
|
|
// only loads on JDK 1.8 so we need to bring in older versions of parboiled which support JDK 1.8
|
|
|
|
|
addSbtPlugin(("org.apache.pekko" % "pekko-sbt-paradox" % "0.0.0+19-f498f7c0-SNAPSHOT").excludeAll(
|
|
|
|
|
"com.lightbend.paradox", "sbt-paradox",
|
|
|
|
|
"com.lightbend.paradox" % "sbt-paradox-apidoc",
|
|
|
|
|
"com.lightbend.paradox" % "sbt-paradox-project-info"))
|
|
|
|
|
addSbtPlugin(("com.lightbend.paradox" % "sbt-paradox" % "0.9.2").force())
|
|
|
|
|
addSbtPlugin(("com.lightbend.paradox" % "sbt-paradox-apidoc" % "0.10.1").force())
|
|
|
|
|
addSbtPlugin(("com.lightbend.paradox" % "sbt-paradox-project-info" % "2.0.0").force())
|