This does 2 things: * publish a 'buildinfo' report along with the project artifacts to describe the build context and parameters * post-process the jars to remove 'arbitrary' differences, such as jar file ordering and timestamps. This makes it easier to detect and explain when 2 builds of the same source don't produce a bit-per-bit identical result. This for example can improve our confidence that our distribution pipeline has not been compromised.
28 lines
1.5 KiB
Scala
28 lines
1.5 KiB
Scala
// these comment markers are for including code into the docs
|
|
//#sbt-multi-jvm
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-multi-jvm" % "0.4.0")
|
|
//#sbt-multi-jvm
|
|
|
|
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.4.1")
|
|
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.0.0-RC5")
|
|
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.1")
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.4")
|
|
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.3.0")
|
|
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2")
|
|
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.2")
|
|
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "2.1.0")
|
|
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.4")
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.15")
|
|
addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1")
|
|
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.4")
|
|
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.5.3")
|
|
addSbtPlugin("com.lightbend.akka" % "sbt-paradox-akka" % "0.16")
|
|
addSbtPlugin("com.lightbend" % "sbt-whitesource" % "0.1.13")
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")
|
|
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.0.0") // for maintenance of copyright file header
|
|
addSbtPlugin("com.hpe.sbt" % "sbt-pull-request-validator" % "1.0.0")
|
|
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0-M5")
|
|
addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.20")
|
|
|
|
// used for @unidoc directive
|
|
libraryDependencies += "io.github.classgraph" % "classgraph" % "4.4.12"
|