Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pniederw committed Dec 7, 2014
1 parent 98ee869 commit 4adcffc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Expand Up @@ -15,7 +15,7 @@ repositories {

dependencies {
// 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"

// optional dependencies for using Spock
Expand All @@ -24,7 +24,7 @@ dependencies {
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.4.181"
testRuntime "com.h2database:h2:1.4.182"
}

// the remaining configuration is specific to this project, and is not required for using Spock
Expand All @@ -37,7 +37,7 @@ task collectJars(type: Copy) {
}

task wrapper(type: Wrapper) {
gradleVersion = "2.1"
gradleVersion = "2.2"
}


6 changes: 3 additions & 3 deletions build.xml
Expand Up @@ -54,14 +54,14 @@
<dependency
groupId="com.h2database"
artifactId="h2"
version="1.4.181" />
version="1.4.182" />
<remoteRepository
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 -->
<remoteRepository
id="spock-snapshots"
url="http://oss.sonatype.org/content/repositories/snapshots/" />
url="https://oss.sonatype.org/content/repositories/snapshots/" />
</artifact:dependencies>
</target>

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Tue Sep 09 15:41:30 CDT 2014
#Mon Dec 08 00:28:14 CET 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
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
10 changes: 5 additions & 5 deletions pom.xml
Expand Up @@ -46,7 +46,7 @@
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.3.6</version>
<version>2.3.8</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -104,15 +104,15 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.181</version>
<version>1.4.182</version>
</dependency>
</dependencies>

<repositories>
<!-- Only required if a snapshot version of Spock is used -->
<repository>
<id>spock-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots/</url>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
Expand All @@ -123,14 +123,14 @@
<pluginRepositories>
<pluginRepository>
<id>spock-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots/</url>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<!-- Only required by spock-example build -->
<!-- Only required in spock-example build -->
<distributionManagement>
<repository>
<id>foo</id>
Expand Down

0 comments on commit 4adcffc

Please sign in to comment.