Updated dependency and Gradle versions

This commit is contained in:
Peter Niederwieser
2014-09-09 17:17:43 -05:00
parent 0d107189af
commit eea07a6542
4 changed files with 97 additions and 97 deletions
+5 -5
View File
@@ -15,16 +15,16 @@ repositories {
dependencies {
// mandatory dependencies for using Spock
groovy "org.codehaus.groovy:groovy-all:2.1.5"
compile "org.codehaus.groovy:groovy-all:2.3.6"
testCompile "org.spockframework:spock-core:1.0-groovy-2.0-SNAPSHOT"
// optional dependencies for using Spock
testCompile "org.hamcrest:hamcrest-core:1.3" // only necessary if Hamcrest matchers are used
testRuntime "cglib:cglib-nodep:2.2.2" // allows mocking of classes (in addition to interfaces)
testRuntime "org.objenesis:objenesis:1.2" // allows mocking of classes without default constructor (together with CGLIB)
testRuntime "cglib:cglib-nodep:3.1" // allows mocking of classes (in addition to interfaces)
testRuntime "org.objenesis:objenesis:2.1" // allows mocking of classes without default constructor (together with CGLIB)
// dependencies used by examples in this project
testRuntime "com.h2database:h2:1.3.168"
testRuntime "com.h2database:h2:1.4.181"
}
// the remaining configuration is specific to this project, and is not required for using Spock
@@ -37,7 +37,7 @@ task collectJars(type: Copy) {
}
task wrapper(type: Wrapper) {
gradleVersion = "1.3"
gradleVersion = "2.1"
}