We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c80889d commit 4210d9bCopy full SHA for 4210d9b
build.gradle
@@ -66,6 +66,16 @@ subprojects {
66
annotationProcessor(libs.lombok)
67
testCompileOnly(libs.lombok)
68
testAnnotationProcessor(libs.lombok)
69
+
70
+ // Security constraintsAdd commentMore actions
71
+ constraints {
72
+ implementation("org.springframework:spring-web:6.2.8") {
73
+ because("versions below 6.2.8 have security vulnerabilities including CVE-2024-38820 - see dependabot #12")
74
+ }
75
+ implementation("org.apache.tomcat.embed:tomcat-embed-core:10.1.42") {
76
+ because("versions below 10.1.42 have security vulnerabilities including CVE-2024-56337 - see dependabot #13")
77
78
79
}
80
81
checkstyle {
0 commit comments