build.gradle.kts 444 B

123456789101112131415
  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(project(":instrumentation:spring:starters:spring-boot-starter"))
  11. api("io.opentelemetry:opentelemetry-exporter-jaeger")
  12. }