Fix integration-webflux-data

Use Netty instead of Undertow which is broken with Spring
Boot 3.4.x.
This commit is contained in:
Sébastien Deleuze
2025-01-02 11:34:03 +01:00
parent 6658236a70
commit 9686391d9f

View File

@@ -9,13 +9,6 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-integration")
implementation("org.springframework.boot:spring-boot-starter-data-redis-reactive")
implementation("org.springframework.boot:spring-boot-starter-webflux")
//NOTE: Netty is not CR compatible at the moment
implementation("org.springframework.boot:spring-boot-starter-undertow")
modules {
module("org.springframework.boot:spring-boot-starter-reactor-netty") {
replacedBy("org.springframework.boot:spring-boot-starter-undertow", "Use Undertow instead of Netty")
}
}
implementation("org.springframework.integration:spring-integration-webflux")
implementation("org.springframework.integration:spring-integration-jdbc")