We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 050f428 commit d0136e0Copy full SHA for d0136e0
gradle/plugins/publishing/build.gradle.kts
@@ -8,3 +8,18 @@ dependencies {
8
implementation("junitbuild.base:dsl-extensions")
9
implementation(libs.plugins.jreleaser.markerCoordinates)
10
}
11
+
12
+configurations.configureEach {
13
+ resolutionStrategy {
14
+ eachDependency {
15
+ // Workaround for CVE-2025-4949
16
+ if (requested.name == "org.eclipse.jgit") {
17
+ useVersion("6.10.1.202505221210-r")
18
+ }
19
+ // Workaround for CVE-2020-36843
20
+ if (requested.name == "sshj") {
21
+ useVersion("0.40.0")
22
23
24
25
+}
0 commit comments