Skip to content

Commit 546951e

Browse files
committed
Use constraint
1 parent 1c00a96 commit 546951e

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

gradle/plugins/publishing/build.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ plugins {
66

77
dependencies {
88
implementation("junitbuild.base:dsl-extensions")
9-
implementation(libs.plugins.jreleaser.markerCoordinates) {
10-
exclude("org.codehaus.plexus", "plexus-utils") // workaround for CVE-2025-67030
11-
}
9+
implementation(libs.plugins.jreleaser.markerCoordinates)
1210
constraints {
1311
implementation("org.eclipse.jgit:org.eclipse.jgit") {
1412
version {
@@ -28,5 +26,11 @@ dependencies {
2826
}
2927
because("Workaround for GHSA-72hv-8253-57qq")
3028
}
29+
implementation("org.codehaus.plexus:plexus-utils") {
30+
version {
31+
require("4.0.3")
32+
}
33+
because("Workaround for CVE-2025-67030")
34+
}
3135
}
3236
}

0 commit comments

Comments
 (0)