From 54e22b74b0e7d2233e1e069da5606af9e0dccb8e Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Tue, 11 Nov 2014 15:14:06 +0200 Subject: [PATCH] AMQP-437: Update Spring, RabbitMQ Versions JIRA: https://jira.spring.io/browse/AMQP-437 Add a note about compatibility to the reference document. Add Gradle Dependency Example to Quick Tour --- build.gradle | 4 ++-- src/reference/docbook/quick-tour.xml | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) 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. + +
Very, Very Quick