31 lines
786 B
Plaintext
31 lines
786 B
Plaintext
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")
|
|
}
|
|
}
|