build.gradle.kts 820 B

1234567891011121314151617181920212223242526
  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. implementation("org.slf4j:slf4j-api")
  11. compileOnly("com.google.auto.value:auto-value-annotations")
  12. annotationProcessor("com.google.auto.value:auto-value")
  13. testImplementation(project(":testing-common"))
  14. testImplementation("org.mockito:mockito-core")
  15. testImplementation("org.mockito:mockito-junit-jupiter")
  16. testImplementation("org.assertj:assertj-core")
  17. // this only exists to make Intellij happy since it doesn't (currently at least) understand our
  18. // inclusion of this artifact inside of :instrumentation-api
  19. compileOnly(project(":instrumentation-api-caching"))
  20. }