From 2a16fc54f2c66382709f9a6dc38cc29858f39fc1 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Tue, 7 May 2019 10:44:37 -0400 Subject: [PATCH] AMQP: Exclude spring transitive dependencies --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 404ae57385..3c483a4218 100644 --- a/build.gradle +++ b/build.gradle @@ -358,7 +358,9 @@ project('spring-integration-amqp') { description = 'Spring Integration AMQP Support' dependencies { compile project(":spring-integration-core") - compile("org.springframework.amqp:spring-rabbit:$springAmqpVersion") + compile("org.springframework.amqp:spring-rabbit:$springAmqpVersion") { + exclude group: 'org.springframework' + } testCompile("org.springframework.amqp:spring-rabbit-junit:$springAmqpVersion") testCompile project(":spring-integration-stream")