Skip to content

Commit b48c270

Browse files
committed
[Java] Upgrade to Gradle 9.6.0.
1 parent effad48 commit b48c270

5 files changed

Lines changed: 14 additions & 17 deletions

File tree

CHANGELOG.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* **[Rust]** Inline generated header methods. (https://github.com/aeron-io/simple-binary-encoding/pull/1110[#1110])
66
* **[Rust]** Add element descriptions to comments.
77
* **[C#]** Seal `PrimitiveValue` and `PrimitiveType`, make `ThrowHelper` static. (https://github.com/aeron-io/simple-binary-encoding/pull/1109[#1109])
8-
* Upgrade to `Gradle` 9.5.1.
8+
* Upgrade to `Gradle` 9.6.0.
99
* Upgrade to `JUnit` 6.1.0.
1010
* Upgrade to `Shadow` 9.4.2.
1111
* Upgrade to `jqwik` 1.10.1.

build.gradle

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,14 @@ def getConfigProperty(final String projectPropertyName, final String envVarName)
6767
return value ? value : null
6868
}
6969

70-
ext {
71-
isReleaseVersion = !sbeVersion.endsWith('-SNAPSHOT')
72-
73-
sonatypeCentralPortalReleasesRepoUrl = 'https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/'
74-
sonatypeCentralPortalSnapshotsRepoUrl = 'https://central.sonatype.com/repository/maven-snapshots/'
75-
sonatypeCentralPortalUsername = getConfigProperty('sonatypeCentralPortalUsername', 'SONATYPE_CENTRAL_PORTAL_USERNAME')
76-
sonatypeCentralPortalPassword = getConfigProperty('sonatypeCentralPortalPassword', 'SONATYPE_CENTRAL_PORTAL_PASSWORD')
77-
78-
signingKey = getConfigProperty('signingKey', 'SIGNING_GPG_SECRET_KEY') // NOTE: ASCII armored secret key
79-
signingPassword = getConfigProperty('signingPassword', 'SIGNING_GPG_PASSWORD') // NOTE: Plain text
80-
}
70+
def isReleaseVersion = !sbeVersion.endsWith('-SNAPSHOT')
71+
def sonatypeCentralPortalReleasesRepoUrl = 'https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/'
72+
def sonatypeCentralPortalSnapshotsRepoUrl = 'https://central.sonatype.com/repository/maven-snapshots/'
73+
def sonatypeCentralPortalUsername = getConfigProperty('sonatypeCentralPortalUsername', 'SONATYPE_CENTRAL_PORTAL_USERNAME')
74+
def sonatypeCentralPortalPassword = getConfigProperty('sonatypeCentralPortalPassword', 'SONATYPE_CENTRAL_PORTAL_PASSWORD')
75+
def signingKey = getConfigProperty('signingKey', 'SIGNING_GPG_SECRET_KEY') // NOTE: ASCII armored secret key
76+
def signingPassword = getConfigProperty('signingPassword', 'SIGNING_GPG_PASSWORD') // NOTE: Plain text
77+
def libs = rootProject.libs
8178

8279
def projectPom = {
8380
name = 'sbe'

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-9.5.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.0-all.zip
44
networkTimeout=10000
55
retries=0
66
retryBackOffMs=500

gradlew

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)