Skip to content

Commit 66e625b

Browse files
authored
Merge pull request #40 from DataDog/mborst/cc-vulns-runtime-fixes
Fix CC runtime vuln deps (commons-io, lz4)
2 parents e97f035 + 43604db commit 66e625b

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

build.gradle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,17 @@ subprojects {
115115
implementation("net.minidev:json-smart:2.5.0") {
116116
because("CVE-2023-1370 - transitive from json-path")
117117
}
118+
implementation("commons-io:commons-io:2.14.0") {
119+
because("CVE-2024-47554 - transitive from swagger-parser")
120+
}
121+
}
122+
}
123+
124+
configurations.all {
125+
resolutionStrategy {
126+
dependencySubstitution {
127+
substitute(module("org.lz4:lz4-java")).using(module("at.yawk.lz4:lz4-java:1.8.1"))
128+
}
118129
}
119130
}
120131

0 commit comments

Comments
 (0)