Skip to content

Commit

Permalink
Revert "[Java] Upgrade to Gradle 8.12."
Browse files Browse the repository at this point in the history
This reverts commit 075579d.
  • Loading branch information
vyazelenko committed Jan 14, 2025
1 parent 075579d commit b7817b9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ project(':agrona') {
repositories {
maven {
name = 'MavenCentral'
url = !isReleaseVersion ? ossrhSnapshotsRepoUrl : ossrhReleasesRepoUrl
url(!isReleaseVersion ? ossrhSnapshotsRepoUrl : ossrhReleasesRepoUrl)
credentials {
username = ossrhUsername
password = ossrhPassword
Expand Down Expand Up @@ -445,7 +445,7 @@ project(':agrona-agent') {
repositories {
maven {
name = 'MavenCentral'
url = !isReleaseVersion ? ossrhSnapshotsRepoUrl : ossrhReleasesRepoUrl
url(!isReleaseVersion ? ossrhSnapshotsRepoUrl : ossrhReleasesRepoUrl)
credentials {
username = ossrhUsername
password = ossrhPassword
Expand Down Expand Up @@ -517,7 +517,7 @@ project(':agrona-concurrency-tests') {

tasks.register('parseResultsFile', JavaExec) {
dependsOn shadowJar
group = 'verification'
group 'verification'
classpath = files(tasks.shadowJar)
workingDir = layout.buildDirectory.get()
args = ['-p', jcstressResults, '-r', 'reports/jcstress']
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ byteBuddy = "1.15.11"
checkstyle = "10.21.1"
junit5 = "5.11.4"
jmh = "1.37"
gradle = "8.12"
gradle = "8.11.1"

[libraries]
junit4 = { group = "junit", name = "junit", version = "4.13.2" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 2 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit

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

0 comments on commit b7817b9

Please sign in to comment.