Skip to content

Commit 520604a

Browse files
committed
3.2.x release related changes - gradle updates etc.
1 parent b3109e8 commit 520604a

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ configure(javaProjects) { subproject ->
132132
def scopeAttribute = Attribute.of('dependency.scope', String)
133133

134134
java {
135+
toolchain {
136+
languageVersion = JavaLanguageVersion.of(17)
137+
}
135138
withJavadocJar()
136139
withSourcesJar()
137140
registerFeature('optional') {

gradle/wrapper/gradle-wrapper.jar

79 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=d725d707bfabd4dfdc958c624003b3c80accc03f7037b5122c4b1d0ef15cecab
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionSha256Sum=8d97a97984f6cbd2b85fe4c60a743440a347544bf18818048e611f5288d46c94
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew

+1-2
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

settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ pluginManagement {
77

88
plugins {
99
id 'io.spring.develocity.conventions' version '0.0.22'
10+
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
1011
}
1112

1213
rootProject.name = 'spring-kafka-dist'

0 commit comments

Comments
 (0)