Skip to content

Commit

Permalink
Fix package relocation for the agent jar
Browse files Browse the repository at this point in the history
  • Loading branch information
jbachorik committed Nov 4, 2024
1 parent 7211c9b commit dd337c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions btrace-dist/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ task agentJar(type: ShadowJar) {

configurations = [project.configurations.artifact]
relocate 'org.jctools', 'org.openjdk.btrace.libs.agent.org.jctools'
relocate 'org.objectweb.asm', 'org.openjdk.btrace.libs.agent.org.objectweb.asm'
relocate 'org.slf4j', 'org.openjdk.btrace.libs.agent.org.slf4j'
relocate 'org.objectweb.asm', 'org.openjdk.btrace.libs.org.objectweb.asm'
relocate 'org.slf4j', 'org.openjdk.btrace.libs.org.slf4j'
}

task bootJar(type: ShadowJar) {
Expand All @@ -152,8 +152,8 @@ task bootJar(type: ShadowJar) {

configurations = [project.configurations.artifact]
relocate 'org.jctools', 'org.openjdk.btrace.libs.boot.org.jctools'
relocate 'org.objectweb.asm', 'org.openjdk.btrace.libs.boot.org.objectweb.asm'
relocate 'org.slf4j', 'org.openjdk.btrace.libs.boot.org.slf4j'
relocate 'org.objectweb.asm', 'org.openjdk.btrace.libs.org.objectweb.asm'
relocate 'org.slf4j', 'org.openjdk.btrace.libs.org.slf4j'
}

task clientJar(type: ShadowJar) {
Expand Down

0 comments on commit dd337c1

Please sign in to comment.