build.gradle.kts 370 B

12345678910111213
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. compileOnly("org.springframework:spring-web:3.1.0.RELEASE")
  6. testLibrary("org.springframework:spring-web:3.1.0.RELEASE")
  7. latestDepTestLibrary("org.springframework:spring-web:5.+")
  8. testImplementation(project(":testing-common"))
  9. testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
  10. }