19 lines
637 B
Groovy
19 lines
637 B
Groovy
group = 'io.opentelemetry.javaagent'
|
|
|
|
apply plugin: "otel.java-conventions"
|
|
apply plugin: "otel.publish-conventions"
|
|
|
|
dependencies {
|
|
api "io.opentelemetry:opentelemetry-api"
|
|
compileOnly "io.opentelemetry:opentelemetry-sdk"
|
|
implementation "org.slf4j:slf4j-api"
|
|
implementation project(':instrumentation-api')
|
|
compileOnly "com.google.auto.value:auto-value-annotations"
|
|
annotationProcessor "com.google.auto.value:auto-value"
|
|
|
|
testImplementation project(':testing-common')
|
|
testImplementation "org.mockito:mockito-core"
|
|
testImplementation "org.mockito:mockito-junit-jupiter"
|
|
testImplementation "org.assertj:assertj-core"
|
|
}
|