Skip to content

Fix security alerts #217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,6 @@ subprojects {
testRuntimeOnly(libs.junit.platform.launcher)
testImplementation(libs.mockito.core)
testImplementation(libs.mockito.junit.jupiter)

// Security constraints
constraints {
implementation("ch.qos.logback:logback-core:1.5.15") {
because("versions below 1.5.15 have security vulnerabilities - see dependabot #7, #6")
}
implementation("ch.qos.logback:logback-classic:1.5.15") {
because("versions below 1.5.15 have security vulnerabilities - see dependabot #7, #6")
}
implementation("org.springframework:spring-web:6.2.8") {
because("versions below 6.2.8 have security vulnerabilities including CVE-2024-38820 - see dependabot #12")
}
implementation("org.apache.tomcat.embed:tomcat-embed-core:10.1.42") {
because("versions below 10.1.42 have security vulnerabilities including CVE-2024-56337 - see dependabot #13")
}
}
}

jacoco {
Expand Down Expand Up @@ -79,6 +63,22 @@ subprojects {
annotationProcessor(libs.lombok)
testCompileOnly(libs.lombok)
testAnnotationProcessor(libs.lombok)

// Security constraints
constraints {
implementation("ch.qos.logback:logback-core:1.5.15") {
because("versions below 1.5.15 have security vulnerabilities - see dependabot #7, #6")
}
implementation("ch.qos.logback:logback-classic:1.5.15") {
because("versions below 1.5.15 have security vulnerabilities - see dependabot #7, #6")
}
implementation("org.springframework:spring-web:6.2.8") {
because("versions below 6.2.8 have security vulnerabilities including CVE-2024-38820 - see dependabot #12")
}
implementation("org.apache.tomcat.embed:tomcat-embed-core:10.1.42") {
because("versions below 10.1.42 have security vulnerabilities including CVE-2024-56337 - see dependabot #13")
}
}
}

checkstyle {
Expand Down
Loading