From 2a9968f39b9f1ceed690692ec756167eea0bd332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Sun, 26 Oct 2025 08:55:28 +0100 Subject: [PATCH] Add Reactor test utilities to reactive test starters Closes gh-47795 --- .../build.gradle | 1 + .../build.gradle | 1 + starter/spring-boot-starter-data-mongodb-reactive/build.gradle | 1 + starter/spring-boot-starter-data-r2dbc-test/build.gradle | 1 + .../spring-boot-starter-data-redis-reactive-test/build.gradle | 1 + starter/spring-boot-starter-r2dbc-test/build.gradle | 2 ++ starter/spring-boot-starter-webclient-test/build.gradle | 1 + 7 files changed, 8 insertions(+) diff --git a/starter/spring-boot-starter-data-cassandra-reactive-test/build.gradle b/starter/spring-boot-starter-data-cassandra-reactive-test/build.gradle index fed7249fe16..0940a3b774c 100644 --- a/starter/spring-boot-starter-data-cassandra-reactive-test/build.gradle +++ b/starter/spring-boot-starter-data-cassandra-reactive-test/build.gradle @@ -25,4 +25,5 @@ dependencies { api(project(":starter:spring-boot-starter-test")) api(project(":module:spring-boot-data-cassandra-test")) + api("io.projectreactor:reactor-test") } diff --git a/starter/spring-boot-starter-data-couchbase-reactive-test/build.gradle b/starter/spring-boot-starter-data-couchbase-reactive-test/build.gradle index 5f4aff89675..1b23efdfc05 100644 --- a/starter/spring-boot-starter-data-couchbase-reactive-test/build.gradle +++ b/starter/spring-boot-starter-data-couchbase-reactive-test/build.gradle @@ -25,4 +25,5 @@ dependencies { api(project(":starter:spring-boot-starter-test")) api(project(":module:spring-boot-data-couchbase-test")) + api("io.projectreactor:reactor-test") } diff --git a/starter/spring-boot-starter-data-mongodb-reactive/build.gradle b/starter/spring-boot-starter-data-mongodb-reactive/build.gradle index e328eb102dd..8a813550be1 100644 --- a/starter/spring-boot-starter-data-mongodb-reactive/build.gradle +++ b/starter/spring-boot-starter-data-mongodb-reactive/build.gradle @@ -26,5 +26,6 @@ dependencies { api(project(":module:spring-boot-data-mongodb")) api(project(":module:spring-boot-reactor")) + api("io.projectreactor:reactor-test") api("org.mongodb:mongodb-driver-reactivestreams") } diff --git a/starter/spring-boot-starter-data-r2dbc-test/build.gradle b/starter/spring-boot-starter-data-r2dbc-test/build.gradle index 736a5f89844..5149e45b94c 100644 --- a/starter/spring-boot-starter-data-r2dbc-test/build.gradle +++ b/starter/spring-boot-starter-data-r2dbc-test/build.gradle @@ -25,4 +25,5 @@ dependencies { api(project(":starter:spring-boot-starter-test")) api(project(":module:spring-boot-data-r2dbc-test")) + api("io.projectreactor:reactor-test") } diff --git a/starter/spring-boot-starter-data-redis-reactive-test/build.gradle b/starter/spring-boot-starter-data-redis-reactive-test/build.gradle index d75444b876c..ed02b91f396 100644 --- a/starter/spring-boot-starter-data-redis-reactive-test/build.gradle +++ b/starter/spring-boot-starter-data-redis-reactive-test/build.gradle @@ -25,4 +25,5 @@ dependencies { api(project(":starter:spring-boot-starter-test")) api(project(":module:spring-boot-data-redis-test")) + api("io.projectreactor:reactor-test") } diff --git a/starter/spring-boot-starter-r2dbc-test/build.gradle b/starter/spring-boot-starter-r2dbc-test/build.gradle index 1b5773c4bbe..ae31ee40784 100644 --- a/starter/spring-boot-starter-r2dbc-test/build.gradle +++ b/starter/spring-boot-starter-r2dbc-test/build.gradle @@ -23,4 +23,6 @@ description = "Starter for testing R2DBC" dependencies { api(project(":starter:spring-boot-starter-r2dbc")) api(project(":starter:spring-boot-starter-test")) + + api("io.projectreactor:reactor-test") } diff --git a/starter/spring-boot-starter-webclient-test/build.gradle b/starter/spring-boot-starter-webclient-test/build.gradle index 79fe88e4392..e3dbe6d0a18 100644 --- a/starter/spring-boot-starter-webclient-test/build.gradle +++ b/starter/spring-boot-starter-webclient-test/build.gradle @@ -26,4 +26,5 @@ dependencies { api(project(":starter:spring-boot-starter-webclient")) api(project(":module:spring-boot-webclient-test")) + api("io.projectreactor:reactor-test") }