Skip to content

Commit 783f7fb

Browse files
committed
Add 'woodstox:wstx-lgpl' to WOODSTOX rule
1 parent dc3c853 commit 783f7fb

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

samples/sample-all-deactivated/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,8 @@ dependencies {
251251
implementation("stax:stax-api:1.0.1")
252252
implementation("velocity:velocity:1.4")
253253
implementation("woodstox:wstx-asl:2.9.3")
254+
implementation("woodstox:wstx-lgpl:3.2.7")
254255

255-
implementation("com.google.collections:google-collections:1.0") // moved down: https://github.com/gradle/gradle/issues/22326
256-
257-
// implementation("woodstox:wstx-lgpl:3.2.7") - has no POM file
256+
// moved down: https://github.com/gradle/gradle/issues/22326
257+
implementation("com.google.collections:google-collections:1.0")
258258
}

samples/sample-all-deactivated/build.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ compileClasspath - Compile classpath for source set 'main'.
249249
+--- stax:stax-api:1.0.1 FAILED
250250
+--- velocity:velocity:1.4 FAILED
251251
+--- woodstox:wstx-asl:2.9.3 FAILED
252+
+--- woodstox:wstx-lgpl:3.2.7 FAILED
252253
\--- com.google.collections:google-collections:1.0 FAILED
253254

254255
A web-based, searchable dependency report is available by adding the --scan option.

samples/sample-all/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,10 @@ dependencies {
254254
implementation("stax:stax-api:1.0.1")
255255
implementation("velocity:velocity:1.4")
256256
implementation("woodstox:wstx-asl:2.9.3")
257+
implementation("woodstox:wstx-lgpl:3.2.7")
257258

258-
implementation("com.google.collections:google-collections:1.0") // moved down: https://github.com/gradle/gradle/issues/22326
259-
260-
// implementation("woodstox:wstx-lgpl:3.2.7") - has no POM file
259+
// moved down: https://github.com/gradle/gradle/issues/22326
260+
implementation("com.google.collections:google-collections:1.0")
261261
}
262262

263263
jvmDependencyConflicts {

samples/sample-all/build.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,7 @@ compileClasspath - Compile classpath for source set 'main'.
354354
+--- stax:stax-api:1.0.1
355355
+--- velocity:velocity:1.4 -> org.apache.velocity:velocity-engine-core:2.3 (*)
356356
+--- woodstox:wstx-asl:2.9.3 -> org.codehaus.woodstox:woodstox-core-asl:4.4.1 (*)
357+
+--- woodstox:wstx-lgpl:3.2.7 -> org.codehaus.woodstox:woodstox-core-asl:4.4.1 (*)
357358
\--- com.google.collections:google-collections:1.0 -> com.google.guava:guava:33.0.0-jre (*)
358359

359360
(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree.

src/main/java/org/gradlex/jvm/dependency/conflict/detection/rules/CapabilityDefinition.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,8 @@ public enum CapabilityDefinition {
274274
"org.codehaus.woodstox:woodstox-core-lgpl",
275275
"org.codehaus.woodstox:wstx-asl",
276276
"org.codehaus.woodstox:wstx-lgpl",
277-
"woodstox:wstx-asl"
277+
"woodstox:wstx-asl",
278+
"woodstox:wstx-lgpl"
278279
),
279280
JAKARTA_ACTIVATION_API(HIGHEST_VERSION, JakartaActivationApiRule.class,
280281
"jakarta.activation:jakarta.activation-api",

0 commit comments

Comments
 (0)