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
This commit is contained in:
Phillip Webb 2023-10-18 20:53:06 -07:00
parent 93b562e632
commit 3ccf29ef49
2 changed files with 5 additions and 2 deletions

View File

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

View File

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