Skip to content

Commit 2a16fc5

Browse files
committed
AMQP: Exclude spring transitive dependencies
1 parent eb94532 commit 2a16fc5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,9 @@ project('spring-integration-amqp') {
358358
description = 'Spring Integration AMQP Support'
359359
dependencies {
360360
compile project(":spring-integration-core")
361-
compile("org.springframework.amqp:spring-rabbit:$springAmqpVersion")
361+
compile("org.springframework.amqp:spring-rabbit:$springAmqpVersion") {
362+
exclude group: 'org.springframework'
363+
}
362364

363365
testCompile("org.springframework.amqp:spring-rabbit-junit:$springAmqpVersion")
364366
testCompile project(":spring-integration-stream")

0 commit comments

Comments
 (0)