From 0ed88c32682312ef593917162518c4272cf97b0d Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Tue, 23 Jul 2019 14:16:07 -0400 Subject: [PATCH] Fix `spring-web` dependency for AMQP module A `spring-web` dependecy has been placed into a `compile` configuration by mistake - it must in the `testCompile` --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 601b57811e..e1ffe09e65 100644 --- a/build.gradle +++ b/build.gradle @@ -378,7 +378,7 @@ project('spring-integration-amqp') { exclude group: 'org.springframework' } testCompile project(":spring-integration-stream") - compile "org.springframework:spring-web:$springVersion" + testCompile "org.springframework:spring-web:$springVersion" } }