20 lines
472 B
Plaintext
20 lines
472 B
Plaintext
plugins {
|
|
id("otel.java-conventions")
|
|
id("otel.jacoco-conventions")
|
|
id("otel.japicmp-conventions")
|
|
id("otel.publish-conventions")
|
|
}
|
|
|
|
group = "io.opentelemetry.javaagent"
|
|
|
|
dependencies {
|
|
api(project(":instrumentation-api"))
|
|
|
|
compileOnly(project(":instrumentation-appender-api-internal"))
|
|
|
|
compileOnly("com.google.auto.value:auto-value-annotations")
|
|
annotationProcessor("com.google.auto.value:auto-value")
|
|
|
|
testImplementation(project(":testing-common"))
|
|
}
|