build.gradle.kts 609 B

1234567891011121314151617181920
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. library("org.springframework.security:spring-security-config:6.0.0")
  6. library("org.springframework.security:spring-security-web:6.0.0")
  7. library("org.springframework:spring-web:6.0.0")
  8. library("io.projectreactor:reactor-core:3.5.0")
  9. library("jakarta.servlet:jakarta.servlet-api:6.0.0")
  10. implementation(project(":instrumentation:reactor:reactor-3.1:library"))
  11. testImplementation(project(":testing-common"))
  12. testLibrary("org.springframework:spring-test:6.0.0")
  13. }
  14. otelJava {
  15. minJavaVersionSupported.set(JavaVersion.VERSION_17)
  16. }