Skip to content

Commit

Permalink
upgrade to gradle 8.3-rc-1
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Jul 20, 2023
1 parent 7113fd2 commit ab70b2d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protobuf = "3.23.4"
slf4j = "2.0.7"
slf4j-test = "3.0.1"
snakeyaml = "2.0"
sonarqube = "4.2.1.3168"
sonarqube = "4.3.0.3225"
spotbugs-contrib = "7.6.0"
spotbugs-core = "4.7.3"
spotbugs-plugin = "5.0.14"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,12 @@ tasks.withType<JavaExec>().configureEach {
tasks.withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
fileMode = "664".toInt(8)
dirMode = "775".toInt(8)
filePermissions {
unix("rw-r--r--")
}
dirPermissions {
unix("rwxr-xr-x")
}
}

val projectDescription = objects.property<String>().convention(provider { project.description })
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-rc-1-bin.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit ab70b2d

Please sign in to comment.