From f0e187fbd77dab32f4bbc4f4082d7b9293674501 Mon Sep 17 00:00:00 2001 From: Vedran Pavic Date: Mon, 29 Jan 2018 16:54:46 +0100 Subject: [PATCH] Update references to Spring Boot's Redis starter Closes gh-952 --- docs/src/docs/asciidoc/guides/boot.adoc | 2 +- samples/boot/build.gradle | 2 +- samples/findbyusername/build.gradle | 2 +- samples/httpsession-redis-json/build.gradle | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/docs/asciidoc/guides/boot.adoc b/docs/src/docs/asciidoc/guides/boot.adoc index bead88c5..b9f9829c 100644 --- a/docs/src/docs/asciidoc/guides/boot.adoc +++ b/docs/src/docs/asciidoc/guides/boot.adoc @@ -25,7 +25,7 @@ If you are using Maven, ensure to add the following dependencies: org.springframework.boot - spring-boot-starter-redis + spring-boot-starter-data-redis ---- diff --git a/samples/boot/build.gradle b/samples/boot/build.gradle index c7a0c9cc..c84d5dc9 100644 --- a/samples/boot/build.gradle +++ b/samples/boot/build.gradle @@ -16,7 +16,7 @@ group = 'samples' dependencies { compile project(':spring-session'), - "org.springframework.boot:spring-boot-starter-redis", + "org.springframework.boot:spring-boot-starter-data-redis", "org.springframework.boot:spring-boot-starter-web", "org.springframework.boot:spring-boot-starter-thymeleaf", "org.springframework.boot:spring-boot-starter-security", diff --git a/samples/findbyusername/build.gradle b/samples/findbyusername/build.gradle index 10fc7423..a9497852 100644 --- a/samples/findbyusername/build.gradle +++ b/samples/findbyusername/build.gradle @@ -16,7 +16,7 @@ group = 'samples' dependencies { compile project(':spring-session'), - "org.springframework.boot:spring-boot-starter-redis", + "org.springframework.boot:spring-boot-starter-data-redis", "org.springframework.boot:spring-boot-starter-web", "org.springframework.boot:spring-boot-starter-security", "org.springframework.boot:spring-boot-starter-thymeleaf", diff --git a/samples/httpsession-redis-json/build.gradle b/samples/httpsession-redis-json/build.gradle index 8e15aed6..92417a13 100644 --- a/samples/httpsession-redis-json/build.gradle +++ b/samples/httpsession-redis-json/build.gradle @@ -23,7 +23,7 @@ ext['spring-security.version'] = springSecurityVersion dependencies { compile project(':spring-session'), - "org.springframework.boot:spring-boot-starter-redis", + "org.springframework.boot:spring-boot-starter-data-redis", "org.springframework.boot:spring-boot-starter-web", "org.springframework.boot:spring-boot-starter-thymeleaf", "org.springframework.boot:spring-boot-starter-security", @@ -66,4 +66,4 @@ def reservePort() { def result = socket.localPort socket.close() result -} \ No newline at end of file +}