diff --git a/docs/src/main/asciidoc/spring-cloud-zookeeper.adoc b/docs/src/main/asciidoc/spring-cloud-zookeeper.adoc
index c6eed276..b050731b 100644
--- a/docs/src/main/asciidoc/spring-cloud-zookeeper.adoc
+++ b/docs/src/main/asciidoc/spring-cloud-zookeeper.adoc
@@ -23,32 +23,86 @@ Starting with Curator 4.0 both versions of Zookeeper are supported via the same
In case you are integrating with version 3.4 you need to change the Zookeeper dependency
that comes shipped with `curator`, and thus `spring-cloud-zookeeper`.
-To do so simply exclude that dependency and add the 3.4.x version like shown below.
+To do so exclude that dependency and add the 3.4.x version like shown below,
+Note that ZooKeeper 3.4.x is no longer supported by Curator 5.0,
+please check https://curator.apache.org/zk-compatibility-34.html[documentation].
+There will be a few more steps, you need to change curator version to 4.2.0.
+
+
.maven
[source,xml,indent=0]
----
-
- org.springframework.cloud
- spring-cloud-starter-zookeeper-all
-
-
+
+ 4.2.0
+
+
+
+ org.springframework.cloud
+ spring-cloud-starter-zookeeper-all
+
+
+
+ org.apache.zookeeper
+ zookeeper
+ 3.4.12
+
+
+
+
+
+
+ org.apache.curator
+ curator-recipes
+ ${curator.version}
+
+
+ org.apache.zookeeper
+ zookeeper
+
+
+ guava
+ com.google.guava
+
+
+
+
org.apache.zookeeper
zookeeper
-
-
-
-
- org.apache.zookeeper
- zookeeper
- 3.4.12
-
-
- org.slf4j
- slf4j-log4j12
-
-
-
+ 3.4.12
+
+
+ org.slf4j
+ slf4j-log4j12
+
+
+ log4j
+ log4j
+
+
+
+
+ org.apache.curator
+ curator-x-async
+ ${curator.version}
+
+
+ org.apache.curator
+ curator-x-discovery
+ ${curator.version}
+
+
+ org.apache.curator
+ curator-framework
+ ${curator.version}
+
+
+ org.apache.curator
+ curator-client
+ ${curator.version}
+
+
+
----
.gradle