We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11f8d22 commit 9c97284Copy full SHA for 9c97284
build.gradle
@@ -39,8 +39,12 @@ jar {
39
40
tasks.withType(AbstractArchiveTask).configureEach {
41
// ensure 100% byte-for-byte reproducible builds
42
+ // https://github.com/jvm-repo-rebuild/reproducible-central
43
+ // https://github.com/gradle/gradle/issues/28806
44
preserveFileTimestamps = false
45
reproducibleFileOrder = true
46
+ dirMode = 0755 // rwx r-x r-x
47
+ fileMode = 0644 // rw- r-- r--
48
}
49
50
checkstyle {
0 commit comments