1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-17 19:26:34 +02:00

gradle, make all archive tasks reproducible

This commit is contained in:
soloturn
2020-07-26 19:09:15 +02:00
parent c29348da28
commit 4da5b44643

View File

@@ -65,3 +65,10 @@ tasks.test {
includeEngines("junit-vintage")
}
}
// make all archive tasks in the build reproducible
tasks.withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
}