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") }