From 2298809ac91b764f09bca625d2ea9cebe6763098 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Wed, 22 May 2013 13:09:06 -0400 Subject: [PATCH] INT-2855 Fix commons-io Dependency Even when using native tail, there is a dependency on commons-io due to the factory bean. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index f56eaf7367..011154852d 100644 --- a/build.gradle +++ b/build.gradle @@ -204,7 +204,7 @@ project('spring-integration-file') { dependencies { compile project(":spring-integration-core") compile "org.springframework:spring-context:$springVersion" - compile("commons-io:commons-io:$commonsIoVersion", optional) + compile "commons-io:commons-io:$commonsIoVersion" testCompile project(":spring-integration-test") } }