diff --git a/build.gradle b/build.gradle
index 796bbc87..f1c1308d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -80,9 +80,9 @@ subprojects { subproject ->
log4jVersion = '1.2.17'
logbackVersion = '1.1.2'
mockitoVersion = '1.9.5'
- rabbitmqVersion = project.hasProperty('rabbitmqVersion') ? project.rabbitmqVersion : '3.3.5'
+ rabbitmqVersion = project.hasProperty('rabbitmqVersion') ? project.rabbitmqVersion : '3.4.1'
- springVersion = project.hasProperty('springVersion') ? project.springVersion : '4.1.1.RELEASE'
+ springVersion = project.hasProperty('springVersion') ? project.springVersion : '4.1.2.RELEASE'
springRetryVersion = '1.1.2.RELEASE'
}
diff --git a/src/reference/docbook/quick-tour.xml b/src/reference/docbook/quick-tour.xml
index 9277c3bc..f4055cba 100644
--- a/src/reference/docbook/quick-tour.xml
+++ b/src/reference/docbook/quick-tour.xml
@@ -19,7 +19,24 @@
spring-rabbit
${version}
]]>
+
+ And for gradle:
+
+ compile 'org.springframework.amqp:spring-rabbit:${version}'
+
+ Compatibility
+
+ While the default Spring Framework version dependency is 4.1.x, Spring AMQP is generally compatible
+ with earlier versions of Spring Framework. Annotation-based listeners and the
+ RabbitMessagingTemplate require Spring Framework 4.1, however.
+
+
+ Similarly, the default amqp-client version is 3.4.x but the framework is
+ generally compatible with earlier versions. However, of course, features that rely
+ on newer client versions will not be available.
+
+