build.gradle.kts 891 B

1234567891011121314151617181920212223
  1. plugins {
  2. id("otel.java-conventions")
  3. id("otel.publish-conventions")
  4. }
  5. group = "io.opentelemetry.instrumentation"
  6. val versions: Map<String, String> by project
  7. val springBootVersion = versions["org.springframework.boot"]
  8. dependencies {
  9. api("org.springframework.boot:spring-boot-starter:$springBootVersion")
  10. api("org.springframework.boot:spring-boot-starter-aop:$springBootVersion")
  11. api(project(":instrumentation:spring:spring-boot-autoconfigure"))
  12. api(project(":instrumentation-annotations"))
  13. implementation(project(":instrumentation:resources:library"))
  14. api("io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi")
  15. api("io.opentelemetry:opentelemetry-api")
  16. api("io.opentelemetry:opentelemetry-exporter-logging")
  17. api("io.opentelemetry:opentelemetry-exporter-otlp")
  18. api("io.opentelemetry:opentelemetry-sdk")
  19. api(project(":instrumentation-annotations"))
  20. }