Skip to content

Commit 3ccf29e

Browse files
committed
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
1 parent 93b562e commit 3ccf29e

File tree

2 files changed

+5
-2
lines changed
  • spring-boot-project/spring-boot-starters

2 files changed

+5
-2
lines changed

spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@ plugins {
55
description = "Starter for using Redis key-value data store with Spring Data Redis reactive and the Lettuce client"
66

77
dependencies {
8-
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis"))
8+
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
9+
api("io.lettuce:lettuce-core")
10+
api("io.projectreactor:reactor-core")
11+
api("org.springframework.data:spring-data-redis")
912
}

spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ description = "Starter for using Redis key-value data store with Spring Data Red
66

77
dependencies {
88
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
9-
api("org.springframework.data:spring-data-redis")
109
api("io.lettuce:lettuce-core")
10+
api("org.springframework.data:spring-data-redis")
1111
}

0 commit comments

Comments
 (0)