Skip to content

Commit 76e4c51

Browse files
Merge 25.3 to develop
2 parents 9c5da74 + 4875509 commit 76e4c51

2 files changed

Lines changed: 36 additions & 1 deletion

File tree

gradle.properties

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

293293
sqliteJdbcVersion=3.49.1.0
294294

server/embedded/build.gradle

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

4848
// Allows forcing a Spring Framework version that differs from spring-boot's version (e.g., to address CVEs)
49+
implementation('org.springframework:spring-aop') {
50+
version {
51+
strictly "${springVersion}"
52+
}
53+
}
54+
implementation('org.springframework:spring-beans') {
55+
version {
56+
strictly "${springVersion}"
57+
}
58+
}
59+
implementation('org.springframework:spring-context') {
60+
version {
61+
strictly "${springVersion}"
62+
}
63+
}
64+
implementation('org.springframework:spring-core') {
65+
version {
66+
strictly "${springVersion}"
67+
}
68+
}
69+
implementation('org.springframework:spring-expression') {
70+
version {
71+
strictly "${springVersion}"
72+
}
73+
}
74+
implementation('org.springframework:spring-jcl') {
75+
version {
76+
strictly "${springVersion}"
77+
}
78+
}
4979
implementation('org.springframework:spring-web') {
5080
version {
5181
strictly "${springVersion}"
5282
}
5383
}
84+
implementation('org.springframework:spring-webmvc') {
85+
version {
86+
strictly "${springVersion}"
87+
}
88+
}
5489

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

0 commit comments

Comments
 (0)