File tree 4 files changed +7
-8
lines changed 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ subprojects {
199
199
}
200
200
201
201
javadoc {
202
- failOnError false
202
+ failOnError = false
203
203
title = ' <h1>Simple Binary Encoding (SBE)</h1>'
204
204
options. bottom = ' <i>Copyright © 2013-2025 Real Logic Limited. All Rights Reserved.</i>'
205
205
options. encoding = ' UTF-8'
@@ -389,7 +389,7 @@ project(':sbe-tool') {
389
389
390
390
repositories {
391
391
maven {
392
- url( ! isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl)
392
+ url = ! isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl
393
393
credentials {
394
394
username = ossrhUsername
395
395
password = ossrhPassword
@@ -459,7 +459,7 @@ project(':sbe-all') {
459
459
}
460
460
repositories {
461
461
maven {
462
- url( ! isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl)
462
+ url = ! isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl
463
463
credentials {
464
464
username = ossrhUsername
465
465
password = ossrhPassword
@@ -579,7 +579,7 @@ project(':sbe-samples') {
579
579
580
580
repositories {
581
581
maven {
582
- url( ! isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl)
582
+ url = ! isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl
583
583
credentials {
584
584
username = ossrhUsername
585
585
password = ossrhPassword
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ agrona = "2.0.1"
3
3
checkstyle = " 10.21.2"
4
4
commons-codec = " 1.15"
5
5
commons-lang3 = " 3.8.1"
6
- gradle = " 8.11 .1"
6
+ gradle = " 8.12 .1"
7
7
hamcrest = " 3.0"
8
8
httpcore = " 4.4.14"
9
9
jqwik = " 1.9.2"
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
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
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 86
86
# shellcheck disable=SC2034
87
87
APP_BASE_NAME=${0##*/ }
88
88
# 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
91
90
92
91
# Use the maximum available, or set MAX_FD != -1 to use that value.
93
92
MAX_FD=maximum
You can’t perform that action at this time.
0 commit comments