Add spring-boot-reactor to reactive starters

This commit adds the "spring-boot-reactor" module as a dependency to
reactive starters. While this was already the case for many starters,
this module was missing from GraphQL, RSocket, WebClient and WebFlux.

Closes gh-49332
This commit is contained in:
Brian Clozel
2026-02-26 14:51:41 +01:00
parent 8091973ead
commit bbd566c3cf
4 changed files with 4 additions and 0 deletions
@@ -24,5 +24,6 @@ dependencies {
api(project(":starter:spring-boot-starter"))
api(project(":starter:spring-boot-starter-jackson"))
api(project(":module:spring-boot-reactor"))
api(project(":module:spring-boot-graphql"))
}
@@ -25,6 +25,7 @@ dependencies {
api(project(":starter:spring-boot-starter-jackson"))
api(project(":starter:spring-boot-starter-reactor-netty"))
api(project(":module:spring-boot-reactor"))
api(project(":module:spring-boot-rsocket"))
api("io.rsocket:rsocket-transport-netty")
@@ -24,6 +24,7 @@ dependencies {
api(project(":starter:spring-boot-starter"))
api(project(":starter:spring-boot-starter-jackson"))
api(project(":module:spring-boot-reactor"))
api(project(":module:spring-boot-webclient"))
api("io.projectreactor.netty:reactor-netty-http")
@@ -25,5 +25,6 @@ dependencies {
api(project(":starter:spring-boot-starter-jackson"))
api(project(":starter:spring-boot-starter-reactor-netty"))
api(project(":module:spring-boot-reactor"))
api(project(":module:spring-boot-webflux"))
}