Skip to content

Commit 4875509

Browse files
authored
Upgrade Spring Framework to the latest version (#1068)
1 parent 7ed7522 commit 4875509

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ snappyJavaVersion=1.1.10.7
291291
# Also, update apacheTomcatVersion above to match Spring Boot's Tomcat dependency version
292292
springBootVersion=3.4.5
293293
# This usually matches the Spring Framework version dictated by springBootVersion
294-
springVersion=6.2.6
294+
springVersion=6.2.7
295295

296296
sqliteJdbcVersion=3.49.1.0
297297

server/embedded/build.gradle

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,46 @@ dependencies {
4343
}
4444

4545
// Allows forcing a Spring Framework version that differs from spring-boot's version (e.g., to address CVEs)
46+
implementation('org.springframework:spring-aop') {
47+
version {
48+
strictly "${springVersion}"
49+
}
50+
}
51+
implementation('org.springframework:spring-beans') {
52+
version {
53+
strictly "${springVersion}"
54+
}
55+
}
56+
implementation('org.springframework:spring-context') {
57+
version {
58+
strictly "${springVersion}"
59+
}
60+
}
61+
implementation('org.springframework:spring-core') {
62+
version {
63+
strictly "${springVersion}"
64+
}
65+
}
66+
implementation('org.springframework:spring-expression') {
67+
version {
68+
strictly "${springVersion}"
69+
}
70+
}
71+
implementation('org.springframework:spring-jcl') {
72+
version {
73+
strictly "${springVersion}"
74+
}
75+
}
4676
implementation('org.springframework:spring-web') {
4777
version {
4878
strictly "${springVersion}"
4979
}
5080
}
81+
implementation('org.springframework:spring-webmvc') {
82+
version {
83+
strictly "${springVersion}"
84+
}
85+
}
5186

5287
// Allows forcing a Tomcat version that differs from spring-boot's version (e.g., to address CVEs or regressions,
5388
// or to test a Tomcat release candidate)

0 commit comments

Comments
 (0)