Updated dependency and Gradle versions
This commit is contained in:
+5
-5
@@ -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"
|
||||
}
|
||||
|
||||
|
||||
|
||||
Vendored
BIN
Binary file not shown.
+2
-2
@@ -1,6 +1,6 @@
|
||||
#Fri Jul 05 23:20:47 CEST 2013
|
||||
#Tue Sep 09 15:41:30 CDT 2014
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=http\://services.gradle.org/distributions/gradle-1.3-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.1-bin.zip
|
||||
|
||||
Reference in New Issue
Block a user