From d3ab764c769dc6e6c33e46b0df1c482939b7b6ef Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Fri, 3 Apr 2015 13:15:23 -0500 Subject: [PATCH] Update Boot sample to use Redis Starter Fixes gh-125 --- docs/src/docs/asciidoc/guides/boot.adoc | 7 +++++-- samples/boot/build.gradle | 3 ++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/src/docs/asciidoc/guides/boot.adoc b/docs/src/docs/asciidoc/guides/boot.adoc index 87f08bb..16e8c1d 100644 --- a/docs/src/docs/asciidoc/guides/boot.adoc +++ b/docs/src/docs/asciidoc/guides/boot.adoc @@ -20,9 +20,12 @@ If you are using Maven, ensure to add the following dependencies: org.springframework.session - spring-session-data-redis + spring-session {spring-session-version} - pom + + + org.springframework.boot + spring-boot-starter-redis ---- diff --git a/samples/boot/build.gradle b/samples/boot/build.gradle index 237d226..ef3c77d 100644 --- a/samples/boot/build.gradle +++ b/samples/boot/build.gradle @@ -16,7 +16,8 @@ tasks.findByPath("artifactoryPublish")?.enabled = false group = 'samples' dependencies { - compile project(':spring-session-data-redis'), + compile project(':spring-session'), + "org.springframework.boot:spring-boot-starter-redis", "org.springframework.boot:spring-boot-starter-web", "org.springframework.boot:spring-boot-starter-thymeleaf", "redis.embedded:embedded-redis:$embeddedRedisVersion",