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",