Update for Spock 1.0

This commit is contained in:
Peter Niederwieser
2015-03-02 13:04:35 +01:00
parent 5106695332
commit 8a36b51de2
5 changed files with 8 additions and 11 deletions
+3 -6
View File
@@ -1,6 +1,6 @@
apply plugin: "groovy"
version = "1.0-SNAPSHOT"
version = "1.0"
description = "Spock Framework - Example Project"
// Spock works with Java 1.5 and above
@@ -15,8 +15,8 @@ repositories {
dependencies {
// mandatory dependencies for using Spock
compile "org.codehaus.groovy:groovy-all:2.3.8"
testCompile "org.spockframework:spock-core:1.0-groovy-2.3-SNAPSHOT"
compile "org.codehaus.groovy:groovy-all:2.4.1"
testCompile "org.spockframework:spock-core:1.0-groovy-2.4"
// optional dependencies for using Spock
testCompile "org.hamcrest:hamcrest-core:1.3" // only necessary if Hamcrest matchers are used
@@ -36,8 +36,5 @@ task collectJars(type: Copy) {
from configurations.testRuntime
}
task wrapper(type: Wrapper) {
gradleVersion = "2.2"
}