diff --git a/spring-boot-starters/pom.xml b/spring-boot-starters/pom.xml index 6c8b7917bf..6302dc6708 100644 --- a/spring-boot-starters/pom.xml +++ b/spring-boot-starters/pom.xml @@ -56,6 +56,8 @@ spring-boot-starter-mustache spring-boot-starter-actuator spring-boot-starter-parent + + spring-boot-starter-redis spring-boot-starter-security spring-boot-starter-social-facebook spring-boot-starter-social-twitter diff --git a/spring-boot-starters/spring-boot-starter-redis/pom.xml b/spring-boot-starters/spring-boot-starter-redis/pom.xml new file mode 100644 index 0000000000..56bf9e8893 --- /dev/null +++ b/spring-boot-starters/spring-boot-starter-redis/pom.xml @@ -0,0 +1,36 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starters + 1.4.0.BUILD-SNAPSHOT + + spring-boot-starter-redis + spring-boot-starter-redis (DEPRECATED) + DEPRECATED (use spring-boot-starter-data-redis instead). + Starter for using Redis key-value data store with Spring Data Redis and + the Jedis client + http://projects.spring.io/spring-boot/ + + Pivotal Software, Inc. + http://www.spring.io + + + ${basedir}/../.. + + + + org.springframework.boot + spring-boot-starter + + + org.springframework.data + spring-data-redis + + + redis.clients + jedis + + + diff --git a/spring-boot-starters/spring-boot-starter-redis/src/main/resources/META-INF/spring.provides b/spring-boot-starters/spring-boot-starter-redis/src/main/resources/META-INF/spring.provides new file mode 100644 index 0000000000..ef52e2ea08 --- /dev/null +++ b/spring-boot-starters/spring-boot-starter-redis/src/main/resources/META-INF/spring.provides @@ -0,0 +1 @@ +provides: spring-data-redis,jedis \ No newline at end of file