Make lib module jar reproducible

This commit is contained in:
AsamK 2021-05-22 13:34:59 +02:00
parent d3a4a3a99e
commit 79f1ca5491

View file

@ -26,6 +26,11 @@ configurations {
} }
} }
tasks.withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
}
tasks.withType<JavaCompile> { tasks.withType<JavaCompile> {
options.encoding = "UTF-8" options.encoding = "UTF-8"
} }