From d1367e06d254b890ddd5dd9e5bed8acbd3550be4 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Mon, 19 Dec 2011 17:03:51 -0500 Subject: [PATCH] INT-2305 --- build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index ee8c6d0e91..18cea80d60 100644 --- a/build.gradle +++ b/build.gradle @@ -117,6 +117,7 @@ configure(javaprojects) { cglibVersion = '2.2' commonsNetVersion = '2.0' easymockVersion = '2.3' + groovyVersion = '1.8.4' jacksonVersion = '1.8.3' javaxActivationVersion = '1.1.1' junitVersion = '4.8.2' @@ -273,7 +274,7 @@ project('spring-integration-groovy') { dependencies { compile project(":spring-integration-core") compile project(":spring-integration-scripting") - compile "org.codehaus.groovy:groovy-all:1.8.4" + compile "org.codehaus.groovy:groovy-all:$groovyVersion" compile "org.springframework:spring-context-support:$springVersion" } } @@ -408,7 +409,7 @@ project('spring-integration-scripting') { compile project(":spring-integration-core") testCompile project(":spring-integration-test") testCompile("org.jruby:jruby:1.6.3") - testCompile("org.codehaus.groovy:groovy-all:1.7.5") + testCompile("org.codehaus.groovy:groovy-all:$groovyVersion") testCompile("org.python:jython-standalone:2.5.2") } }