36 lines
922 B
Plaintext
36 lines
922 B
Plaintext
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
plugins {
|
|
id("otel.java-conventions")
|
|
id("otel.publish-conventions")
|
|
id("com.gradleup.shadow")
|
|
}
|
|
|
|
group = "io.opentelemetry.javaagent"
|
|
|
|
dependencies {
|
|
compileOnly(project(":javaagent-bootstrap"))
|
|
compileOnly(project(":javaagent-tooling"))
|
|
|
|
implementation("org.slf4j:slf4j-api")
|
|
implementation("org.slf4j:slf4j-simple")
|
|
|
|
annotationProcessor("com.google.auto.service:auto-service")
|
|
compileOnly("com.google.auto.service:auto-service-annotations")
|
|
testCompileOnly("com.google.auto.service:auto-service-annotations")
|
|
}
|
|
|
|
tasks {
|
|
val shadowJar by existing(ShadowJar::class) {
|
|
// required for META-INF/services files relocation
|
|
mergeServiceFiles()
|
|
|
|
// Prevents configuration naming conflict with other SLF4J instances
|
|
relocate("org.slf4j", "io.opentelemetry.javaagent.slf4j")
|
|
}
|
|
|
|
assemble {
|
|
dependsOn(shadowJar)
|
|
}
|
|
}
|