updated build scripts for Spock 0.6 and Gradle 1.0-m9

This commit is contained in:
Peter Niederwieser
2012-03-18 13:33:29 -04:00
parent ce035ff967
commit 1f5ac95159
4 changed files with 8 additions and 9 deletions
+2 -3
View File
@@ -1,6 +1,6 @@
apply plugin: "groovy"
version = "0.6-SNAPSHOT"
version = "0.6"
description = "Spock Framework - Example Project"
// Spock works with Java 1.5 and above
@@ -9,7 +9,6 @@ sourceCompatibility = 1.5
repositories {
// Spock releases are available from Maven Central
mavenCentral()
maven { url "https://oss.sonatype.org/service/local/staging/deploy/maven2/" }
// Spock development snapshots are available from Spock's Maven repo
maven { url "http://m2repo.spockframework.org/snapshots" }
}
@@ -38,6 +37,6 @@ task collectJars(type: Copy) {
}
task wrapper(type: Wrapper) {
gradleVersion = "1.0-milestone-8a"
gradleVersion = "1.0-milestone-9"
}