Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions samples/sample-all-deactivated/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,8 @@ dependencies {
implementation("stax:stax-api:1.0.1")
implementation("velocity:velocity:1.4")
implementation("woodstox:wstx-asl:2.9.3")
implementation("woodstox:wstx-lgpl:3.2.7")

implementation("com.google.collections:google-collections:1.0") // moved down: https://github.com/gradle/gradle/issues/22326

// implementation("woodstox:wstx-lgpl:3.2.7") - has no POM file
// moved down: https://github.com/gradle/gradle/issues/22326
implementation("com.google.collections:google-collections:1.0")
}
1 change: 1 addition & 0 deletions samples/sample-all-deactivated/build.out
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ compileClasspath - Compile classpath for source set 'main'.
+--- stax:stax-api:1.0.1 FAILED
+--- velocity:velocity:1.4 FAILED
+--- woodstox:wstx-asl:2.9.3 FAILED
+--- woodstox:wstx-lgpl:3.2.7 FAILED
\--- com.google.collections:google-collections:1.0 FAILED

A web-based, searchable dependency report is available by adding the --scan option.
6 changes: 3 additions & 3 deletions samples/sample-all/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,10 @@ dependencies {
implementation("stax:stax-api:1.0.1")
implementation("velocity:velocity:1.4")
implementation("woodstox:wstx-asl:2.9.3")
implementation("woodstox:wstx-lgpl:3.2.7")

implementation("com.google.collections:google-collections:1.0") // moved down: https://github.com/gradle/gradle/issues/22326

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

jvmDependencyConflicts {
Expand Down
1 change: 1 addition & 0 deletions samples/sample-all/build.out
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ compileClasspath - Compile classpath for source set 'main'.
+--- stax:stax-api:1.0.1
+--- velocity:velocity:1.4 -> org.apache.velocity:velocity-engine-core:2.3 (*)
+--- woodstox:wstx-asl:2.9.3 -> org.codehaus.woodstox:woodstox-core-asl:4.4.1 (*)
+--- woodstox:wstx-lgpl:3.2.7 -> org.codehaus.woodstox:woodstox-core-asl:4.4.1 (*)
\--- com.google.collections:google-collections:1.0 -> com.google.guava:guava:33.0.0-jre (*)

(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,8 @@ public enum CapabilityDefinition {
"org.codehaus.woodstox:woodstox-core-lgpl",
"org.codehaus.woodstox:wstx-asl",
"org.codehaus.woodstox:wstx-lgpl",
"woodstox:wstx-asl"
"woodstox:wstx-asl",
"woodstox:wstx-lgpl"
),
JAKARTA_ACTIVATION_API(HIGHEST_VERSION, JakartaActivationApiRule.class,
"jakarta.activation:jakarta.activation-api",
Expand Down
Loading