Merge branch '2.7.x' into 3.0.x

Closes gh-35225
pull/35611/head
Andy Wilkinson 2 years ago
commit 8f3f74ffd5

@ -19,13 +19,14 @@ ext {
def properties = new Properties() def properties = new Properties()
properties.load(it) properties.load(it)
set("kotlinVersion", properties["kotlinVersion"]) set("kotlinVersion", properties["kotlinVersion"])
set("springFrameworkVersion", properties["springFrameworkVersion"])
} }
} }
dependencies { dependencies {
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:${javaFormatVersion}" checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:${javaFormatVersion}"
implementation(platform("org.springframework:spring-framework-bom:5.3.15")) implementation(platform("org.springframework:spring-framework-bom:${springFrameworkVersion}"))
implementation("com.diffplug.gradle:goomph:3.37.2") implementation("com.diffplug.gradle:goomph:3.37.2")
implementation("com.fasterxml.jackson.core:jackson-databind:2.11.4") implementation("com.fasterxml.jackson.core:jackson-databind:2.11.4")
implementation("com.gradle:gradle-enterprise-gradle-plugin:3.12.1") implementation("com.gradle:gradle-enterprise-gradle-plugin:3.12.1")

@ -5,7 +5,8 @@ org.gradle.parallel=true
org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8 org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
kotlinVersion=1.7.22 kotlinVersion=1.7.22
tomcatVersion=10.1.8
nativeBuildToolsVersion=0.9.21 nativeBuildToolsVersion=0.9.21
springFrameworkVersion=6.0.8
tomcatVersion=10.1.8
kotlin.stdlib.default.dependency=false kotlin.stdlib.default.dependency=false

@ -1355,7 +1355,7 @@ bom {
] ]
} }
} }
library("Spring Framework", "6.0.8") { library("Spring Framework", "${springFrameworkVersion}") {
group("org.springframework") { group("org.springframework") {
imports = [ imports = [
"spring-framework-bom" "spring-framework-bom"

Loading…
Cancel
Save