Skip to content

Commit

Permalink
Update stripper
Browse files Browse the repository at this point in the history
Should fix #277 as this now strips those 0x000a sections entirely.
  • Loading branch information
raboof committed Feb 18, 2024
1 parent f3fced3 commit 605e121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ enablePlugins(ReproducibleBuildsPlugin)
enablePlugins(SbtPlugin)
enablePlugins(ScriptedPlugin)

libraryDependencies += "net.bzzt" % "reproducible-builds-jvm-stripper" % "0.9"
libraryDependencies += "net.bzzt" % "reproducible-builds-jvm-stripper" % "0.10"
libraryDependencies += "io.spray" %% "spray-json" % "1.3.6"

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.17" % "test"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ object ReproducibleBuildsPlugin extends AutoPlugin {
jar,
new ZipStripper()
.addFileStripper("META-INF/MANIFEST.MF", new ManifestStripper())
.addFileStripper("META-INF/maven/\\S*/pom.properties", new PomPropertiesStripper())
.addFileStripper("META-INF/maven/\\S*/pom.properties", new PropertiesFileStripper())
)

def postProcessZip(zip: File): File = postProcessWith(zip, new ZipStripper())
Expand Down

0 comments on commit 605e121

Please sign in to comment.