From bbd566c3cfefc4d30c431d26d938b4c941bb4584 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Thu, 26 Feb 2026 14:51:41 +0100 Subject: [PATCH] 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 --- starter/spring-boot-starter-graphql/build.gradle | 1 + starter/spring-boot-starter-rsocket/build.gradle | 1 + starter/spring-boot-starter-webclient/build.gradle | 1 + starter/spring-boot-starter-webflux/build.gradle | 1 + 4 files changed, 4 insertions(+) diff --git a/starter/spring-boot-starter-graphql/build.gradle b/starter/spring-boot-starter-graphql/build.gradle index 9368b123a92..47ed0b1d0db 100644 --- a/starter/spring-boot-starter-graphql/build.gradle +++ b/starter/spring-boot-starter-graphql/build.gradle @@ -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")) } diff --git a/starter/spring-boot-starter-rsocket/build.gradle b/starter/spring-boot-starter-rsocket/build.gradle index 0a8b46a4c0f..b6fd22b2960 100644 --- a/starter/spring-boot-starter-rsocket/build.gradle +++ b/starter/spring-boot-starter-rsocket/build.gradle @@ -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") diff --git a/starter/spring-boot-starter-webclient/build.gradle b/starter/spring-boot-starter-webclient/build.gradle index 6664f90db20..f5c0340486c 100644 --- a/starter/spring-boot-starter-webclient/build.gradle +++ b/starter/spring-boot-starter-webclient/build.gradle @@ -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") diff --git a/starter/spring-boot-starter-webflux/build.gradle b/starter/spring-boot-starter-webflux/build.gradle index a14375d8dbc..600681a4bd5 100644 --- a/starter/spring-boot-starter-webflux/build.gradle +++ b/starter/spring-boot-starter-webflux/build.gradle @@ -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")) }