Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
e293008c
Commit
e293008c
authored
Jan 26, 2016
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename redis starter to spring-boot-starter-data-redis
Closes gh-1033
parent
854a6758
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
18 additions
and
18 deletions
+18
-18
pom.xml
spring-boot-dependencies/pom.xml
+5
-5
spring-boot-features.adoc
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+1
-1
using-spring-boot.adoc
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
+3
-3
README.adoc
spring-boot-samples/spring-boot-sample-cache/README.adoc
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-cache/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-data-redis/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-metrics-redis/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-session-redis/pom.xml
+1
-1
pom.xml
spring-boot-starters/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-data-redis/pom.xml
+3
-3
spring.provides
...er-data-redis/src/main/resources/META-INF/spring.provides
+0
-0
No files found.
spring-boot-dependencies/pom.xml
View file @
e293008c
...
@@ -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>
...
...
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
e293008c
...
@@ -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.
...
...
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
View file @
e293008c
...
@@ -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`.
...
...
spring-boot-samples/spring-boot-sample-cache/README.adoc
View file @
e293008c
...
@@ -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).
...
...
spring-boot-samples/spring-boot-sample-cache/pom.xml
View file @
e293008c
...
@@ -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>
-->
-->
<!--
<!--
...
...
spring-boot-samples/spring-boot-sample-data-redis/pom.xml
View file @
e293008c
...
@@ -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>
...
...
spring-boot-samples/spring-boot-sample-metrics-redis/pom.xml
View file @
e293008c
...
@@ -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>
...
...
spring-boot-samples/spring-boot-sample-session-redis/pom.xml
View file @
e293008c
...
@@ -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>
...
...
spring-boot-starters/pom.xml
View file @
e293008c
...
@@ -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>
...
...
spring-boot-starters/spring-boot-starter-redis/pom.xml
→
spring-boot-starters/spring-boot-starter-
data-
redis/pom.xml
View file @
e293008c
...
@@ -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>
...
...
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
View file @
e293008c
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment