build.gradle.kts 491 B

12345678910111213141516
  1. plugins {
  2. id("otel.java-conventions")
  3. }
  4. dependencies {
  5. implementation(project(":testing-common"))
  6. compileOnly("org.springframework:spring-webflux:5.0.0.RELEASE")
  7. // Compile with both old and new netty packages since our test references both for old and
  8. // latest dep tests.
  9. compileOnly("io.projectreactor.ipc:reactor-netty:0.7.0.RELEASE")
  10. compileOnly("io.projectreactor.netty:reactor-netty-http:1.0.7")
  11. compileOnly("org.springframework.boot:spring-boot:2.1.0.RELEASE")
  12. }