otel.javaagent-instrumentation.gradle.kts 499 B

12345678910111213141516
  1. plugins {
  2. id("otel.javaagent-testing")
  3. id("otel.publish-conventions")
  4. id("io.opentelemetry.instrumentation.javaagent-instrumentation")
  5. }
  6. extra["mavenGroupId"] = "io.opentelemetry.javaagent.instrumentation"
  7. base.archivesName.set(projectDir.parentFile.name)
  8. dependencies {
  9. // this only exists to make Intellij happy since it doesn't (currently at least) understand our
  10. // inclusion of this artifact inside of :instrumentation-api
  11. compileOnly(project(":instrumentation-api-caching"))
  12. }