Browse Source

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

Closes gh-1033
pull/4496/merge
Stephane Nicoll 10 years ago
parent
commit
e293008c3f
  1. 10
      spring-boot-dependencies/pom.xml
  2. 2
      spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
  3. 6
      spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
  4. 2
      spring-boot-samples/spring-boot-sample-cache/README.adoc
  5. 2
      spring-boot-samples/spring-boot-sample-cache/pom.xml
  6. 2
      spring-boot-samples/spring-boot-sample-data-redis/pom.xml
  7. 2
      spring-boot-samples/spring-boot-sample-metrics-redis/pom.xml
  8. 2
      spring-boot-samples/spring-boot-sample-session-redis/pom.xml
  9. 2
      spring-boot-starters/pom.xml
  10. 6
      spring-boot-starters/spring-boot-starter-data-redis/pom.xml
  11. 0
      spring-boot-starters/spring-boot-starter-data-redis/src/main/resources/META-INF/spring.provides

10
spring-boot-dependencies/pom.xml

@ -291,6 +291,11 @@ @@ -291,6 +291,11 @@
<artifactId>spring-boot-starter-data-mongodb</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
@ -386,11 +391,6 @@ @@ -386,11 +391,6 @@
<artifactId>spring-boot-starter-mustache</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-remote-shell</artifactId>

2
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

@ -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
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
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.

6
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc

@ -416,6 +416,9 @@ and Hibernate. @@ -416,6 +416,9 @@ and Hibernate.
|`spring-boot-starter-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`
|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`
|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`
|Support for `spring-security`.

2
spring-boot-samples/spring-boot-sample-cache/README.adoc vendored

@ -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
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).

2
spring-boot-samples/spring-boot-sample-cache/pom.xml vendored

@ -71,7 +71,7 @@ @@ -71,7 +71,7 @@
<!--
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
-->
<!--

2
spring-boot-samples/spring-boot-sample-data-redis/pom.xml

@ -21,7 +21,7 @@ @@ -21,7 +21,7 @@
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>

2
spring-boot-samples/spring-boot-sample-metrics-redis/pom.xml

@ -29,7 +29,7 @@ @@ -29,7 +29,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>

2
spring-boot-samples/spring-boot-sample-session-redis/pom.xml

@ -25,7 +25,7 @@ @@ -25,7 +25,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>

2
spring-boot-starters/pom.xml

@ -32,6 +32,7 @@ @@ -32,6 +32,7 @@
<module>spring-boot-starter-data-gemfire</module>
<module>spring-boot-starter-data-jpa</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-solr</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-actuator</module>
<module>spring-boot-starter-parent</module>
<module>spring-boot-starter-redis</module>
<module>spring-boot-starter-security</module>
<module>spring-boot-starter-social-facebook</module>
<module>spring-boot-starter-social-twitter</module>

6
spring-boot-starters/spring-boot-starter-redis/pom.xml → spring-boot-starters/spring-boot-starter-data-redis/pom.xml

@ -6,9 +6,9 @@ @@ -6,9 +6,9 @@
<artifactId>spring-boot-starters</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version>
</parent>
<artifactId>spring-boot-starter-redis</artifactId>
<name>Spring Boot Redis Starter</name>
<description>Spring Boot Redis Starter</description>
<artifactId>spring-boot-starter-data-redis</artifactId>
<name>Spring Boot Data Redis Starter</name>
<description>Spring Boot Data Redis Starter</description>
<url>http://projects.spring.io/spring-boot/</url>
<organization>
<name>Pivotal Software, Inc.</name>

0
spring-boot-starters/spring-boot-starter-redis/src/main/resources/META-INF/spring.provides → spring-boot-starters/spring-boot-starter-data-redis/src/main/resources/META-INF/spring.provides

Loading…
Cancel
Save