Skip to content

Commit

Permalink
chore(deps): add constraint to transitive dep
Browse files Browse the repository at this point in the history
* resolve vulnerability in xmlunit-core included by spring-boot-test
  • Loading branch information
tommytroen committed Jun 18, 2024
1 parent a89015c commit f662d5f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@ dependencies {
}
testImplementation("org.springframework.boot:spring-boot-test:$springBootVersion")
constraints {
testImplementation("org.xmlunit:xmlunit-core") {
because("previous versions have security vulnerabilities")
version {
require("2.10.0")
}
}
testImplementation("org.yaml:snakeyaml:2.2") {
because("previous versions have security vulnerabilities")
}
Expand Down

0 comments on commit f662d5f

Please sign in to comment.