Skip to content

Commit

Permalink
Addressing Vulnerabilities (#27)
Browse files Browse the repository at this point in the history
We are pulling in rewrite-jenkins@17 which has the following CVEs: CVE-2022-34793, CVE-2022-34792, CVE-2022-34794

This is just a runtimeDependency so we have the option of ignoring it, as it's an easy fix to remove I remove it instead of suppressing it
  • Loading branch information
lkerford authored Jan 3, 2025
1 parent a5793f6 commit 71914a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ dependencies {
runtimeOnly("ai.timefold.solver:timefold-solver-migration:latest.release") {
exclude(module = "jakarta.xml.bind-api")
}
runtimeOnly("io.quarkus:quarkus-update-recipes:latest.release")
runtimeOnly("org.apache.camel.upgrade:camel-upgrade-recipes:latest.release")
runtimeOnly("org.apache.wicket:wicket-migration:latest.release")
runtimeOnly("org.axonframework:axon-migration:latest.release")
runtimeOnly("io.quarkus:quarkus-update-recipes:latest.release") {isTransitive = false}
runtimeOnly("org.apache.camel.upgrade:camel-upgrade-recipes:latest.release") {isTransitive = false}
runtimeOnly("org.apache.wicket:wicket-migration:latest.release") {isTransitive = false}
runtimeOnly("org.axonframework:axon-migration:latest.release") {isTransitive = false}
runtimeOnly("software.amazon.awssdk:v2-migration:latest.release")
runtimeOnly("tech.picnic.error-prone-support:error-prone-contrib:latest.release:recipes")

Expand Down

0 comments on commit 71914a9

Please sign in to comment.