Skip to content

Commit a40f010

Browse files
committed
Fix Groovy dependencies
Starting with version `2.5.0` the `groovy-all` is a BOM. That is not clear how it works as a regular dependency in our Gradle config, but generated pom is wrong with this dependency. (Gradle bug?) * Specify explicit required dependencies for `spring-integration-groovy` and `spring-integration-scripting` modules
1 parent 85adea3 commit a40f010

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ project('spring-integration-groovy') {
407407
dependencies {
408408
compile project(":spring-integration-core")
409409
compile project(":spring-integration-scripting")
410-
compile "org.codehaus.groovy:groovy-all:$groovyVersion"
410+
compile "org.codehaus.groovy:groovy:$groovyVersion"
411411
compile "org.springframework:spring-context-support:$springVersion"
412412

413413
testCompile "org.springframework:spring-web:$springVersion"
@@ -566,7 +566,8 @@ project('spring-integration-scripting') {
566566
compile project(":spring-integration-core")
567567

568568
testCompile("org.jruby:jruby:$jrubyVersion")
569-
testCompile("org.codehaus.groovy:groovy-all:$groovyVersion")
569+
testCompile("org.codehaus.groovy:groovy:$groovyVersion")
570+
testCompile("org.codehaus.groovy:groovy-jsr223:$groovyVersion")
570571
testCompile("org.python:jython-standalone:$jythonVersion")
571572
}
572573
}

0 commit comments

Comments
 (0)