File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff 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 © 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
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ agrona = "2.0.1"
33checkstyle = " 10.21.2"
44commons-codec = " 1.15"
55commons-lang3 = " 3.8.1"
6- gradle = " 8.11 .1"
6+ gradle = " 8.12 .1"
77hamcrest = " 3.0"
88httpcore = " 4.4.14"
99jqwik = " 1.9.2"
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 8686# shellcheck disable=SC2034
8787APP_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.
9392MAX_FD=maximum
You can’t perform that action at this time.
0 commit comments