Skip to content

Commit 84b8d4a

Browse files
committed
[Java] Upgrade to Gradle 8.12.1.
1 parent 3255cbf commit 84b8d4a

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ subprojects {
199199
}
200200

201201
javadoc {
202-
failOnError false
202+
failOnError = false
203203
title = '<h1>Simple Binary Encoding (SBE)</h1>'
204204
options.bottom = '<i>Copyright &#169; 2013-2025 Real Logic Limited. All Rights Reserved.</i>'
205205
options.encoding = 'UTF-8'
@@ -389,7 +389,7 @@ project(':sbe-tool') {
389389

390390
repositories {
391391
maven {
392-
url(!isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl)
392+
url = !isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl
393393
credentials {
394394
username = ossrhUsername
395395
password = ossrhPassword
@@ -459,7 +459,7 @@ project(':sbe-all') {
459459
}
460460
repositories {
461461
maven {
462-
url(!isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl)
462+
url = !isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl
463463
credentials {
464464
username = ossrhUsername
465465
password = ossrhPassword
@@ -579,7 +579,7 @@ project(':sbe-samples') {
579579

580580
repositories {
581581
maven {
582-
url(!isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl)
582+
url = !isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl
583583
credentials {
584584
username = ossrhUsername
585585
password = ossrhPassword

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ agrona = "2.0.1"
33
checkstyle = "10.21.2"
44
commons-codec = "1.15"
55
commons-lang3 = "3.8.1"
6-
gradle = "8.11.1"
6+
gradle = "8.12.1"
77
hamcrest = "3.0"
88
httpcore = "4.4.14"
99
jqwik = "1.9.2"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

0 commit comments

Comments
 (0)