Skip to content

Commit

Permalink
Stop excluding ASM from jdependency (#975)
Browse files Browse the repository at this point in the history
Now it's shadowed.

```
runtimeClasspath - Runtime classpath of source set 'main'.
+--- org.jdom:jdom2:2.0.6.1
+--- org.ow2.asm:asm:9.7
+--- org.ow2.asm:asm-commons:9.7
|    +--- org.ow2.asm:asm:9.7
|    \--- org.ow2.asm:asm-tree:9.7
|         \--- org.ow2.asm:asm:9.7
+--- commons-io:commons-io:2.16.1
+--- org.apache.ant:ant:1.10.15
|    \--- org.apache.ant:ant-launcher:1.10.15
+--- org.codehaus.plexus:plexus-utils:4.0.1
+--- org.codehaus.plexus:plexus-xml:4.0.4
|    \--- org.apache.maven:maven-xml-impl:4.0.0-alpha-9
|         +--- org.apache.maven:maven-api-xml:4.0.0-alpha-9
|         |    \--- org.apache.maven:maven-api-meta:4.0.0-alpha-9
|         \--- com.fasterxml.woodstox:woodstox-core:6.5.1
|              \--- org.codehaus.woodstox:stax2-api:4.2.1
+--- org.apache.logging.log4j:log4j-core:2.24.0
|    \--- org.apache.logging.log4j:log4j-api:2.24.0
\--- org.vafer:jdependency:2.10
```
  • Loading branch information
Goooler authored Sep 18, 2024
1 parent fa21300 commit 0dd130d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,13 @@ dependencies {
compileOnly(localGroovy())

implementation("org.jdom:jdom2:2.0.6.1")
implementation("org.ow2.asm:asm:9.7")
implementation("org.ow2.asm:asm-commons:9.7")
implementation("commons-io:commons-io:2.16.1")
implementation("org.apache.ant:ant:1.10.15")
implementation("org.codehaus.plexus:plexus-utils:4.0.1")
implementation("org.codehaus.plexus:plexus-xml:4.0.4")
implementation("org.apache.logging.log4j:log4j-core:2.24.0")
implementation("org.vafer:jdependency:2.10") {
exclude(group = "org.ow2.asm")
}
implementation("org.vafer:jdependency:2.10")

testImplementation("org.spockframework:spock-core:2.3-groovy-3.0") {
exclude(group = "org.codehaus.groovy")
Expand Down

0 comments on commit 0dd130d

Please sign in to comment.