Skip to content

Commit d241673

Browse files
committed
Merge branch '3.0.x'
Closes gh-35226
2 parents 95a8c11 + 8f3f74f commit d241673

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

buildSrc/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ ext {
1919
def properties = new Properties()
2020
properties.load(it)
2121
set("kotlinVersion", properties["kotlinVersion"])
22+
set("springFrameworkVersion", properties["springFrameworkVersion"])
2223
}
2324
}
2425

2526
dependencies {
2627
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:${javaFormatVersion}"
2728

28-
implementation(platform("org.springframework:spring-framework-bom:5.3.15"))
29+
implementation(platform("org.springframework:spring-framework-bom:${springFrameworkVersion}"))
2930
implementation("com.diffplug.gradle:goomph:3.37.2")
3031
implementation("com.fasterxml.jackson.core:jackson-databind:2.11.4")
3132
implementation("com.gradle:gradle-enterprise-gradle-plugin:3.12.1")

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ org.gradle.parallel=true
55
org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
66

77
kotlinVersion=1.8.20
8-
tomcatVersion=10.1.8
98
nativeBuildToolsVersion=0.9.21
9+
springFrameworkVersion=6.0.8
10+
tomcatVersion=10.1.8
1011

1112
kotlin.stdlib.default.dependency=false

spring-boot-project/spring-boot-dependencies/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1414,7 +1414,7 @@ bom {
14141414
]
14151415
}
14161416
}
1417-
library("Spring Framework", "6.0.8") {
1417+
library("Spring Framework", "${springFrameworkVersion}") {
14181418
group("org.springframework") {
14191419
imports = [
14201420
"spring-framework-bom"

0 commit comments

Comments
 (0)