build.gradle.kts 472 B

123456789101112131415
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. compileOnly("org.springframework:spring-web:3.1.0.RELEASE")
  6. testImplementation("org.springframework:spring-web:3.1.0.RELEASE")
  7. testImplementation(project(":testing-common"))
  8. testImplementation("org.assertj:assertj-core")
  9. testImplementation("org.mockito:mockito-core")
  10. testImplementation("org.mockito:mockito-junit-jupiter")
  11. testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
  12. }