Merge pull request #1911 from Owain94/gradlestuff

gradle: Reproducible builds
This commit is contained in:
Owain van Brakel
2019-11-10 19:29:20 +01:00
committed by GitHub

View File

@@ -122,6 +122,13 @@ subprojects {
options.encoding = "UTF-8"
}
withType<AbstractArchiveTask> {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
dirMode = 493
fileMode = 420
}
withType<Checkstyle> {
group = "verification"
@@ -155,4 +162,4 @@ tasks {
}
}
}
}
}