File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments