build.gradle.kts 650 B

12345678910111213141516171819202122
  1. plugins {
  2. id("otel.java-conventions")
  3. id("otel.jacoco-conventions")
  4. id("otel.japicmp-conventions")
  5. id("otel.publish-conventions")
  6. }
  7. group = "io.opentelemetry.instrumentation"
  8. dependencies {
  9. implementation(project(":instrumentation-api"))
  10. api("io.opentelemetry:opentelemetry-api")
  11. api("io.opentelemetry:opentelemetry-semconv")
  12. compileOnly("com.google.auto.value:auto-value-annotations")
  13. annotationProcessor("com.google.auto.value:auto-value")
  14. testImplementation(project(":testing-common"))
  15. testImplementation("io.opentelemetry:opentelemetry-sdk-metrics")
  16. testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
  17. }