From 669db1fb024ba5e76b7d5790c9ec17515b8811ea Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Tue, 4 Mar 2014 16:12:45 -0500 Subject: [PATCH] INT-3299 Remove Unneeded Dependency From IP JIRA: https://jira.springsource.org/browse/INT-3299 The IP module incorrectly has s-i-stream as a transitive dependency. It is only used in a test case. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 4360525333..eb064d462a 100644 --- a/build.gradle +++ b/build.gradle @@ -325,7 +325,7 @@ project('spring-integration-ip') { dependencies { compile project(":spring-integration-core") compile "org.springframework:spring-context:$springVersion" - runtime project(":spring-integration-stream") + testCompile project(":spring-integration-stream") } // suppress deprecation warnings (@SuppressWarnings("deprecation") is not enough for javac)