File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ snappyJavaVersion=1.1.10.7
288288# Also, update apacheTomcatVersion above to match Spring Boot's Tomcat dependency version
289289springBootVersion =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
293293sqliteJdbcVersion =3.49.1.0
294294
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments