123456789101112131415161718192021222324252627282930 |
- plugins {
- id("com.github.johnrengelman.shadow")
- id("otel.java-conventions")
- }
- group = "io.opentelemetry.javaagent.instrumentation"
- dependencies {
- implementation("com.couchbase.client:tracing-opentelemetry:1.0.0")
- }
- tasks {
- shadowJar {
- dependencies {
- // including only tracing-opentelemetry excludes its transitive dependencies
- include(dependency("com.couchbase.client:tracing-opentelemetry"))
- }
- relocate(
- "com.couchbase.client.tracing.opentelemetry",
- "io.opentelemetry.javaagent.instrumentation.couchbase.v3_2.shaded.com.couchbase.client.tracing.opentelemetry"
- )
- }
- val extractShadowJar by registering(Copy::class) {
- dependsOn(shadowJar)
- from(zipTree(shadowJar.get().archiveFile))
- into("build/extracted/shadow")
- }
- }
|