We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 127989e commit dcd1f67Copy full SHA for dcd1f67
1 file changed
dd-java-agent/agent-otel/otel-bootstrap/build.gradle
@@ -65,7 +65,7 @@ dependencies {
65
66
// Unpack the embeddedClasspath jars into otelUnpackedDir so that OtelShimGradlePlugin can
67
// instrument them (e.g. inject the OTel shim).
68
-tasks.register('unpackJars', Copy) {
+tasks.register('unpackOtelJars', Copy) {
69
dependsOn configurations.named('embeddedClasspath')
70
exclude 'META-INF/'
71
exclude '**/module-info.class'
@@ -82,7 +82,7 @@ tasks.register('unpackJars', Copy) {
82
}
83
84
tasks.named('compileJava') {
85
- dependsOn 'unpackJars'
+ dependsOn 'unpackOtelJars'
86
87
88
tasks.named("shadowJar", ShadowJar) {
0 commit comments