34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
plugins {
|
|
id("otel.java-conventions")
|
|
id("otel.jacoco-conventions")
|
|
id("otel.publish-conventions")
|
|
}
|
|
|
|
group = "io.opentelemetry.instrumentation"
|
|
|
|
dependencies {
|
|
implementation(project(":instrumentation-api"))
|
|
|
|
// this only exists to make Intellij happy since it doesn't (currently at least) understand our
|
|
// inclusion of this artifact inside of :instrumentation-api
|
|
compileOnly(project(":instrumentation-api-caching"))
|
|
testCompileOnly(project(":instrumentation-api-caching"))
|
|
|
|
api("io.opentelemetry:opentelemetry-api")
|
|
api("io.opentelemetry:opentelemetry-semconv")
|
|
|
|
implementation("io.opentelemetry:opentelemetry-api-metrics")
|
|
implementation("org.slf4j:slf4j-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")
|
|
testImplementation("org.awaitility:awaitility")
|
|
testImplementation("io.opentelemetry:opentelemetry-sdk-metrics")
|
|
testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
|
|
}
|