From 7fc71fb5b5a581ad070fdd349a6327830353595b Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Mon, 2 Jul 2012 16:16:11 -0400 Subject: [PATCH] INT-2647 spring-tx Needed as Transitive Dependency Pseudo transaction support means some projects now need a transitive dependency to spring-tx. Previously the project was marked as optional in the POM. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 38b0f15e2d..aeffe7323a 100644 --- a/build.gradle +++ b/build.gradle @@ -172,7 +172,7 @@ project('spring-integration-core') { dependencies { compile "org.springframework:spring-aop:$springVersion" compile "org.springframework:spring-context:$springVersion" - compile("org.springframework:spring-tx:$springVersion", optional) + compile "org.springframework:spring-tx:$springVersion" compile("org.codehaus.jackson:jackson-mapper-asl:$jacksonVersion", optional) testCompile "org.aspectj:aspectjrt:$aspectjVersion" testCompile "org.aspectj:aspectjweaver:$aspectjVersion"