Update dependencies

main
Peter Niederwieser 11 years ago
parent 98ee8695b0
commit 4adcffceaf

@ -15,7 +15,7 @@ repositories {
dependencies { dependencies {
// mandatory dependencies for using Spock // mandatory dependencies for using Spock
compile "org.codehaus.groovy:groovy-all:2.3.6" compile "org.codehaus.groovy:groovy-all:2.3.8"
testCompile "org.spockframework:spock-core:1.0-groovy-2.3-SNAPSHOT" testCompile "org.spockframework:spock-core:1.0-groovy-2.3-SNAPSHOT"
// optional dependencies for using Spock // optional dependencies for using Spock
@ -24,7 +24,7 @@ dependencies {
testRuntime "org.objenesis:objenesis:2.1" // allows mocking of classes without default constructor (together with CGLIB) testRuntime "org.objenesis:objenesis:2.1" // allows mocking of classes without default constructor (together with CGLIB)
// dependencies used by examples in this project // dependencies used by examples in this project
testRuntime "com.h2database:h2:1.4.181" testRuntime "com.h2database:h2:1.4.182"
} }
// the remaining configuration is specific to this project, and is not required for using Spock // 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) { task wrapper(type: Wrapper) {
gradleVersion = "2.1" gradleVersion = "2.2"
} }

@ -54,14 +54,14 @@
<dependency <dependency
groupId="com.h2database" groupId="com.h2database"
artifactId="h2" artifactId="h2"
version="1.4.181" /> version="1.4.182" />
<remoteRepository <remoteRepository
id="maven-central" id="maven-central"
url="http://repo1.maven.org/maven2/" /> url="https://repo1.maven.org/maven2/" />
<!-- Only required if a snapshot version of Spock is used --> <!-- Only required if a snapshot version of Spock is used -->
<remoteRepository <remoteRepository
id="spock-snapshots" id="spock-snapshots"
url="http://oss.sonatype.org/content/repositories/snapshots/" /> url="https://oss.sonatype.org/content/repositories/snapshots/" />
</artifact:dependencies> </artifact:dependencies>
</target> </target>

Binary file not shown.

@ -1,6 +1,6 @@
#Tue Sep 09 15:41:30 CDT 2014 #Mon Dec 08 00:28:14 CET 2014
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-2.2-bin.zip

@ -46,7 +46,7 @@
<dependency> <dependency>
<groupId>org.codehaus.groovy</groupId> <groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId> <artifactId>groovy-all</artifactId>
<version>2.3.6</version> <version>2.3.8</version>
</dependency> </dependency>
</dependencies> </dependencies>
</plugin> </plugin>
@ -104,7 +104,7 @@
<dependency> <dependency>
<groupId>com.h2database</groupId> <groupId>com.h2database</groupId>
<artifactId>h2</artifactId> <artifactId>h2</artifactId>
<version>1.4.181</version> <version>1.4.182</version>
</dependency> </dependency>
</dependencies> </dependencies>
@ -112,7 +112,7 @@
<!-- Only required if a snapshot version of Spock is used --> <!-- Only required if a snapshot version of Spock is used -->
<repository> <repository>
<id>spock-snapshots</id> <id>spock-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots/</url> <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
@ -123,14 +123,14 @@
<pluginRepositories> <pluginRepositories>
<pluginRepository> <pluginRepository>
<id>spock-snapshots</id> <id>spock-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots/</url> <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
</pluginRepository> </pluginRepository>
</pluginRepositories> </pluginRepositories>
<!-- Only required by spock-example build --> <!-- Only required in spock-example build -->
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>foo</id> <id>foo</id>

Loading…
Cancel
Save