15 lines
422 B
Plaintext
15 lines
422 B
Plaintext
plugins {
|
|
id("otel.java-conventions")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":testing-common"))
|
|
|
|
compileOnly("org.springframework:spring-webflux:5.0.0.RELEASE")
|
|
|
|
// Compile with both old and new netty packages since our test references both for old and
|
|
// latest dep tests.
|
|
compileOnly("io.projectreactor.ipc:reactor-netty:0.7.0.RELEASE")
|
|
compileOnly("io.projectreactor.netty:reactor-netty-http:1.0.7")
|
|
}
|