Skip to content

Commit 050f428

Browse files
committed
Work around CVE-2025-48734
1 parent f3180a5 commit 050f428

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

gradle/plugins/common/src/main/kotlin/junitbuild.checkstyle-nohttp.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ configurations.checkstyle {
1616
if (requested.group == "ch.qos.logback") {
1717
useVersion(requiredVersionFromLibs("logback"))
1818
}
19+
// Workaround for CVE-2025-48734
20+
if (requested.group == "commons-beanutils") {
21+
useVersion("1.11.0")
22+
}
1923
}
2024
}
2125
}

0 commit comments

Comments
 (0)