diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index acdd8a70074..d07227080e5 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -3493,6 +3493,9 @@ in a convenient way. By default, it uses https://github.com/lettuce-io/lettuce-core/[Lettuce]. That starter handles both traditional and reactive applications. +TIP: we also provide a `spring-boot-starter-data-redis-reactive` '`Starter`' for +consistency with the other stores with reactive support. + [[boot-features-connecting-to-redis]] diff --git a/spring-boot-project/spring-boot-starters/pom.xml b/spring-boot-project/spring-boot-starters/pom.xml index 6f9a4da9a5a..f0417082b5c 100644 --- a/spring-boot-project/spring-boot-starters/pom.xml +++ b/spring-boot-project/spring-boot-starters/pom.xml @@ -35,6 +35,7 @@ spring-boot-starter-data-mongodb-reactive spring-boot-starter-data-neo4j spring-boot-starter-data-redis + spring-boot-starter-data-redis-reactive spring-boot-starter-data-rest spring-boot-starter-data-solr spring-boot-starter-freemarker diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/pom.xml new file mode 100644 index 00000000000..f94e28b0ce0 --- /dev/null +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/pom.xml @@ -0,0 +1,22 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starters + ${revision} + + spring-boot-starter-data-redis-reactive + Spring Boot Data Redis Reactive Starter + Starter for using Redis key-value data store with Spring Data Redis + reactive and the Lettuce client + + ${basedir}/../../.. + + + + org.springframework.boot + spring-boot-starter-data-redis + + + diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/src/main/resources/META-INF/spring.provides b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/src/main/resources/META-INF/spring.provides new file mode 100644 index 00000000000..7c4aeabfda9 --- /dev/null +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/src/main/resources/META-INF/spring.provides @@ -0,0 +1 @@ +provides: spring-data-redis,lettuce-core \ No newline at end of file