Skip to content

Commit 2fab6c5

Browse files
committedFeb 18, 2025··
Upgrade dependencies; prepare for release
1 parent b91faed commit 2fab6c5

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed
 

‎build.gradle

+10-7
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ ext {
9292
lettuceVersion = '6.5.3.RELEASE'
9393
log4jVersion = '2.24.3'
9494
mailVersion = '2.0.3'
95-
micrometerTracingVersion = '1.5.0-SNAPSHOT'
96-
micrometerVersion = '1.15.0-SNAPSHOT'
95+
micrometerTracingVersion = '1.5.0-M2'
96+
micrometerVersion = '1.15.0-M2'
9797
mockitoVersion = '5.15.2'
9898
mongoDriverVersion = '5.3.1'
9999
mysqlVersion = '9.1.0'
@@ -108,12 +108,12 @@ ext {
108108
rsocketVersion = '1.1.5'
109109
servletApiVersion = '6.1.0'
110110
smackVersion = '4.4.8'
111-
springAmqpVersion = '3.2.2'
112-
springDataVersion = '2024.1.3'
113-
springGraphqlVersion = '1.3.3'
114-
springKafkaVersion = '3.3.2'
111+
springAmqpVersion = '3.2.3'
112+
springDataVersion = '2025.0.0-M1'
113+
springGraphqlVersion = '1.3.4'
114+
springKafkaVersion = '3.3.3'
115115
springRetryVersion = '2.0.11'
116-
springSecurityVersion = '6.5.0-SNAPSHOT'
116+
springSecurityVersion = '6.5.0-M2'
117117
springVersion = '6.2.3'
118118
springWsVersion = '4.0.11'
119119
testcontainersVersion = '1.20.4'
@@ -233,6 +233,9 @@ configure(javaProjects) { subproject ->
233233
}
234234

235235
java {
236+
toolchain {
237+
languageVersion = JavaLanguageVersion.of(17)
238+
}
236239
withJavadocJar()
237240
withSourcesJar()
238241
registerFeature('optional') {

‎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=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-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-integration'

0 commit comments

Comments
 (0)
Please sign in to comment.