Skip to content

Commit 9092396

Browse files
committed
Force version on more spring jars
1 parent 3374497 commit 9092396

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

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)