Skip to content

Commit

Permalink
chore: enable reproducible archives (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippHeuer authored Oct 20, 2023
1 parent 5d03e77 commit de8b702
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ subprojects {
}
}

// reproducible builds
withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
}

// testing
test {
useJUnitPlatform()
Expand Down

0 comments on commit de8b702

Please sign in to comment.