Skip to content

Commit f662d5f

Browse files
committed
chore(deps): add constraint to transitive dep
* resolve vulnerability in xmlunit-core included by spring-boot-test
1 parent a89015c commit f662d5f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.gradle.kts

+6
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ dependencies {
8787
}
8888
testImplementation("org.springframework.boot:spring-boot-test:$springBootVersion")
8989
constraints {
90+
testImplementation("org.xmlunit:xmlunit-core") {
91+
because("previous versions have security vulnerabilities")
92+
version {
93+
require("2.10.0")
94+
}
95+
}
9096
testImplementation("org.yaml:snakeyaml:2.2") {
9197
because("previous versions have security vulnerabilities")
9298
}

0 commit comments

Comments
 (0)