Skip to content

Commit

Permalink
chore: Use new file/dir permission APIs
Browse files Browse the repository at this point in the history
Signed-off-by: Jendrik Johannes <jendrik.johannes@gmail.com>
  • Loading branch information
jjohannes committed May 6, 2024
1 parent 160d311 commit 4b35ea3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ tasks.processResources { from(writeGitProperties) }
tasks.withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
fileMode = 436 // octal: 0664
dirMode = 509 // octal: 0775
filePermissions { unix("0664") }
dirPermissions { unix("0775") }
}

tasks.jar { exclude("**/classpath.index") }
Expand Down

0 comments on commit 4b35ea3

Please sign in to comment.