mirror of https://github.com/apache/lucene.git
Make generated archive files reproducible (#13835)
* Make generated archive files reproducible This should ensure deterministic archive files and fix issues with changing checksums even though the codebase has not changed
This commit is contained in:
parent
9a3467d352
commit
d888f6d5a7
|
@ -19,6 +19,7 @@
|
|||
allprojects {
|
||||
tasks.withType(AbstractArchiveTask).configureEach { task ->
|
||||
duplicatesStrategy = DuplicatesStrategy.FAIL
|
||||
preserveFileTimestamps = false
|
||||
reproducibleFileOrder = true
|
||||
dirPermissions {
|
||||
it.unix(0755)
|
||||
|
|
Loading…
Reference in New Issue