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 +}