mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-10 09:20:04 +01:00
build.gradle: normalize file/directory permissions within JARs
This aims to make our build reprodicible.
This commit is contained in:
parent
f41b495610
commit
56658e44de
1 changed files with 5 additions and 0 deletions
|
@ -57,6 +57,11 @@ tasks.withType(AbstractArchiveTask) {
|
|||
reproducibleFileOrder = true
|
||||
}
|
||||
|
||||
tasks.withType(Jar) {
|
||||
dirMode = 0755
|
||||
fileMode = 0644
|
||||
}
|
||||
|
||||
tasks.withType(Javadoc) {
|
||||
options.noTimestamp = true
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue