From 3ccf29ef49268cf2db83a60b42675e4a037374dc Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 18 Oct 2023 20:53:06 -0700 Subject: [PATCH] Refine spring-boot-starter-data-redis-reactive dependencies Change `spring-boot-starter-data-redis-reactive` to be standalone and also declare an explicit dependency on reactor. Closes gh-37943 --- .../spring-boot-starter-data-redis-reactive/build.gradle | 5 ++++- .../spring-boot-starter-data-redis/build.gradle | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/build.gradle b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/build.gradle index d66f98dcfc4..f0c2d2bb4b2 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/build.gradle +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/build.gradle @@ -5,5 +5,8 @@ plugins { description = "Starter for using Redis key-value data store with Spring Data Redis reactive and the Lettuce client" dependencies { - api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis")) + api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter")) + api("io.lettuce:lettuce-core") + api("io.projectreactor:reactor-core") + api("org.springframework.data:spring-data-redis") } diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis/build.gradle b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis/build.gradle index 11f150cd1ee..b76ff7e34fe 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis/build.gradle +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis/build.gradle @@ -6,6 +6,6 @@ description = "Starter for using Redis key-value data store with Spring Data Red dependencies { api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter")) - api("org.springframework.data:spring-data-redis") api("io.lettuce:lettuce-core") + api("org.springframework.data:spring-data-redis") }