build.gradle.kts 472 B

12345678910111213141516171819
  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.javaagent"
  8. dependencies {
  9. api(project(":instrumentation-api"))
  10. compileOnly(project(":instrumentation-appender-api-internal"))
  11. compileOnly("com.google.auto.value:auto-value-annotations")
  12. annotationProcessor("com.google.auto.value:auto-value")
  13. testImplementation(project(":testing-common"))
  14. }