From 0acfdd309c48e90cc4c84a450c86fb700800dd48 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Thu, 5 May 2016 14:26:20 +0100 Subject: [PATCH] Add back (and deprecate via comments) the redis starter For people using the old starter location it makes it more friendly to deprecate now and remove in 2.0. --- spring-boot-starters/pom.xml | 2 ++ .../spring-boot-starter-redis/pom.xml | 36 +++++++++++++++++++ .../main/resources/META-INF/spring.provides | 1 + 3 files changed, 39 insertions(+) create mode 100644 spring-boot-starters/spring-boot-starter-redis/pom.xml create mode 100644 spring-boot-starters/spring-boot-starter-redis/src/main/resources/META-INF/spring.provides diff --git a/spring-boot-starters/pom.xml b/spring-boot-starters/pom.xml index 6c8b7917bfb..6302dc6708f 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 00000000000..56bf9e88936 --- /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 00000000000..ef52e2ea087 --- /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