Make builds reproducible (#4395)

Signed-off-by: Alexander Brandes <mc.cache@web.de>
This commit is contained in:
Alexander Brandes
2024-04-14 21:04:01 +02:00
committed by GitHub
parent d383187c6e
commit bc1cc074b8
3 changed files with 7 additions and 0 deletions

View File

@ -209,6 +209,11 @@ subprojects {
test {
useJUnitPlatform()
}
withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
}
}
}