diff --git a/build.sbt b/build.sbt index 631fad05..6b0152b7 100644 --- a/build.sbt +++ b/build.sbt @@ -27,7 +27,7 @@ dumpSchema := (core / Test / runMain).toTask(" org.apache.pekko.persistence.cass lazy val core = project .in(file("core")) - .enablePlugins(Common, AutomateHeaderPlugin, MimaPlugin, MultiJvmPlugin) + .enablePlugins(Common, AutomateHeaderPlugin, MimaPlugin, ReproducibleBuildsPlugin, MultiJvmPlugin) .dependsOn(cassandraLauncher % Test) .settings( name := "pekko-persistence-cassandra", diff --git a/project/plugins.sbt b/project/plugins.sbt index b038f018..74dcdf41 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -18,6 +18,7 @@ addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1") addSbtPlugin("com.github.pjfanning" % "sbt-pekko-build" % "0.3.3") addSbtPlugin("com.github.pjfanning" % "sbt-source-dist" % "0.1.12") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3") +addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.32") // Documentation addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")