Update gradle build to use groovy 2.0.4.

This commit is contained in:
Marco Vermeulen
2012-09-27 20:53:57 +01:00
parent 702b883f2e
commit be47b7aa77

View File

@@ -9,10 +9,16 @@ repositories {
}
dependencies {
groovy group: 'org.codehaus.groovy', name: 'groovy', version: '2.0.1'
groovy group: 'org.codehaus.groovy', name: 'groovy', version: '2.0.4'
groovy group: 'org.codehaus.groovy', name: 'groovy-templates', version: '2.0.4'
testCompile group: 'junit', name: 'junit', version: '4.10'
testCompile group: 'info.cukes', name: 'cucumber-junit', version: '1.0.11'
testCompile group: 'info.cukes', name: 'cucumber-groovy', version: '1.0.11'
testCompile group: 'org.vert-x', name: 'vertx-core', version: '1.2.3.final'
testCompile group: 'org.vert-x', name: 'vertx-lang-groovy', version: '1.2.3.final'
}
task copyTask(type: Copy) {
from "scripts/gvm"
into 'bin'
}