Commit e293008c authored by Stephane Nicoll's avatar Stephane Nicoll

Rename redis starter to spring-boot-starter-data-redis

Closes gh-1033
parent 854a6758
...@@ -291,6 +291,11 @@ ...@@ -291,6 +291,11 @@
<artifactId>spring-boot-starter-data-mongodb</artifactId> <artifactId>spring-boot-starter-data-mongodb</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version> <version>1.4.0.BUILD-SNAPSHOT</version>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId> <artifactId>spring-boot-starter-data-rest</artifactId>
...@@ -386,11 +391,6 @@ ...@@ -386,11 +391,6 @@
<artifactId>spring-boot-starter-mustache</artifactId> <artifactId>spring-boot-starter-mustache</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version> <version>1.4.0.BUILD-SNAPSHOT</version>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-remote-shell</artifactId> <artifactId>spring-boot-starter-remote-shell</artifactId>
......
...@@ -2711,7 +2711,7 @@ http://redis.io/[Redis] is a cache, message broker and richly-featured key-value ...@@ -2711,7 +2711,7 @@ http://redis.io/[Redis] is a cache, message broker and richly-featured key-value
Spring Boot offers basic auto-configuration for the Spring Boot offers basic auto-configuration for the
https://github.com/xetorthio/jedis/[Jedis] client library and abstractions on top of it https://github.com/xetorthio/jedis/[Jedis] client library and abstractions on top of it
provided by https://github.com/spring-projects/spring-data-redis[Spring Data Redis]. There provided by https://github.com/spring-projects/spring-data-redis[Spring Data Redis]. There
is a `spring-boot-starter-redis` '`Starter POM`' for collecting the dependencies in a is a `spring-boot-starter-data-redis` '`Starter POM`' for collecting the dependencies in a
convenient way. convenient way.
......
...@@ -416,6 +416,9 @@ and Hibernate. ...@@ -416,6 +416,9 @@ and Hibernate.
|`spring-boot-starter-data-mongodb` |`spring-boot-starter-data-mongodb`
|Support for the MongoDB NoSQL Database, including `spring-data-mongodb`. |Support for the MongoDB NoSQL Database, including `spring-data-mongodb`.
|`spring-boot-starter-data-redis`
|Support for the REDIS key-value data store, including `spring-data-redis`.
|`spring-boot-starter-data-rest` |`spring-boot-starter-data-rest`
|Support for exposing Spring Data repositories over REST via `spring-data-rest-webmvc`. |Support for exposing Spring Data repositories over REST via `spring-data-rest-webmvc`.
...@@ -458,9 +461,6 @@ and Hibernate. ...@@ -458,9 +461,6 @@ and Hibernate.
|`spring-boot-starter-mustache` |`spring-boot-starter-mustache`
|Support for the Mustache templating engine. |Support for the Mustache templating engine.
|`spring-boot-starter-redis`
|Support for the REDIS key-value data store, including `spring-redis`.
|`spring-boot-starter-security` |`spring-boot-starter-security`
|Support for `spring-security`. |Support for `spring-security`.
......
...@@ -79,7 +79,7 @@ can set the `spring.cache.infinispan.config` property to use the provided ...@@ -79,7 +79,7 @@ can set the `spring.cache.infinispan.config` property to use the provided
=== Redis === Redis
Add the `spring-boot-starter-redis` and make sure it is configured properly (by default, Add the `spring-boot-starter-data-redis` and make sure it is configured properly (by default,
a redis instance with the default settings is expected on your local box). a redis instance with the default settings is expected on your local box).
......
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
<!-- <!--
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId> <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency> </dependency>
--> -->
<!-- <!--
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId> <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId> <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId> <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.session</groupId> <groupId>org.springframework.session</groupId>
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
<module>spring-boot-starter-data-gemfire</module> <module>spring-boot-starter-data-gemfire</module>
<module>spring-boot-starter-data-jpa</module> <module>spring-boot-starter-data-jpa</module>
<module>spring-boot-starter-data-mongodb</module> <module>spring-boot-starter-data-mongodb</module>
<module>spring-boot-starter-data-redis</module>
<module>spring-boot-starter-data-rest</module> <module>spring-boot-starter-data-rest</module>
<module>spring-boot-starter-data-solr</module> <module>spring-boot-starter-data-solr</module>
<module>spring-boot-starter-freemarker</module> <module>spring-boot-starter-freemarker</module>
...@@ -52,7 +53,6 @@ ...@@ -52,7 +53,6 @@
<module>spring-boot-starter-mustache</module> <module>spring-boot-starter-mustache</module>
<module>spring-boot-starter-actuator</module> <module>spring-boot-starter-actuator</module>
<module>spring-boot-starter-parent</module> <module>spring-boot-starter-parent</module>
<module>spring-boot-starter-redis</module>
<module>spring-boot-starter-security</module> <module>spring-boot-starter-security</module>
<module>spring-boot-starter-social-facebook</module> <module>spring-boot-starter-social-facebook</module>
<module>spring-boot-starter-social-twitter</module> <module>spring-boot-starter-social-twitter</module>
......
...@@ -6,9 +6,9 @@ ...@@ -6,9 +6,9 @@
<artifactId>spring-boot-starters</artifactId> <artifactId>spring-boot-starters</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version> <version>1.4.0.BUILD-SNAPSHOT</version>
</parent> </parent>
<artifactId>spring-boot-starter-redis</artifactId> <artifactId>spring-boot-starter-data-redis</artifactId>
<name>Spring Boot Redis Starter</name> <name>Spring Boot Data Redis Starter</name>
<description>Spring Boot Redis Starter</description> <description>Spring Boot Data Redis Starter</description>
<url>http://projects.spring.io/spring-boot/</url> <url>http://projects.spring.io/spring-boot/</url>
<organization> <organization>
<name>Pivotal Software, Inc.</name> <name>Pivotal Software, Inc.</name>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment