diff --git a/build.gradle.kts b/build.gradle.kts
index 3d0806c..c12d2b9 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -117,11 +117,19 @@ repositories {
configurations.all {
resolutionStrategy {
+ eachDependency {
+ if (requested.group == "org.apache.commons"
+ && requested.name == "commons-compress"
+ && requested.version.toString().startsWith("1.25")
+ ) {
+ useVersion("1.26.0")
+ }
+ }
cacheChangingModulesFor(0, TimeUnit.SECONDS)
cacheDynamicVersionsFor(0, TimeUnit.SECONDS)
- if(name.startsWith("test")) {
+ if (name.startsWith("test")) {
eachDependency {
- if(requested.name == "groovy-xml") {
+ if (requested.name == "groovy-xml") {
useVersion("3.0.9")
}
}
diff --git a/suppressions.xml b/suppressions.xml
index 594d06f..4a52f47 100644
--- a/suppressions.xml
+++ b/suppressions.xml
@@ -75,7 +75,7 @@
CVE-2023-44387
CVE-2023-49238
-
+
@@ -100,7 +100,7 @@
CVE-2014-3625
CVE-2014-1904
-
+
@@ -125,7 +125,7 @@
CVE-2014-3625
CVE-2014-1904
-
+
CVE-2022-4244
CVE-2022-4245
-
+