Updated dependency versions in Gradle/Maven/Ivy builds
This commit is contained in:
+1
-1
@@ -16,7 +16,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.6"
|
||||||
testCompile "org.spockframework:spock-core:1.0-groovy-2.0-SNAPSHOT"
|
testCompile "org.spockframework:spock-core:1.0-groovy-2.3-SNAPSHOT"
|
||||||
|
|
||||||
// optional dependencies for using Spock
|
// optional dependencies for using Spock
|
||||||
testCompile "org.hamcrest:hamcrest-core:1.3" // only necessary if Hamcrest matchers are used
|
testCompile "org.hamcrest:hamcrest-core:1.3" // only necessary if Hamcrest matchers are used
|
||||||
|
|||||||
@@ -27,23 +27,23 @@
|
|||||||
<dependency
|
<dependency
|
||||||
groupId="org.spockframework"
|
groupId="org.spockframework"
|
||||||
artifactId="spock-core"
|
artifactId="spock-core"
|
||||||
version="1.0-groovy-2.0-SNAPSHOT" />
|
version="1.0-groovy-2.3-SNAPSHOT" />
|
||||||
<!-- Optional dependencies for using Spock -->
|
<!-- Optional dependencies for using Spock -->
|
||||||
<!-- enables mocking of classes (in addition to interfaces) -->
|
<!-- enables mocking of classes (in addition to interfaces) -->
|
||||||
<dependency
|
<dependency
|
||||||
groupId="cglib"
|
groupId="cglib"
|
||||||
artifactId="cglib-nodep"
|
artifactId="cglib-nodep"
|
||||||
version="2.2.2" />
|
version="3.1" />
|
||||||
<!-- enables mocking of classes without parameterless constructor (together with CGLIB) -->
|
<!-- enables mocking of classes without parameterless constructor (together with CGLIB) -->
|
||||||
<dependency
|
<dependency
|
||||||
groupId="org.objenesis"
|
groupId="org.objenesis"
|
||||||
artifactId="objenesis"
|
artifactId="objenesis"
|
||||||
version="1.2" />
|
version="2.1" />
|
||||||
<!-- only required if Spock's Ant selector is used, which finds spec classes regardless of their name -->
|
<!-- only required if Spock's Ant selector is used, which finds spec classes regardless of their name -->
|
||||||
<dependency
|
<dependency
|
||||||
groupId="org.ow2.asm"
|
groupId="org.ow2.asm"
|
||||||
artifactId="asm"
|
artifactId="asm"
|
||||||
version="4.0" />
|
version="5.0.3" />
|
||||||
<!-- only required if Hamcrest matchers are used -->
|
<!-- only required if Hamcrest matchers are used -->
|
||||||
<dependency
|
<dependency
|
||||||
groupId="org.hamcrest"
|
groupId="org.hamcrest"
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
<dependency
|
<dependency
|
||||||
groupId="com.h2database"
|
groupId="com.h2database"
|
||||||
artifactId="h2"
|
artifactId="h2"
|
||||||
version="1.3.168" />
|
version="1.4.181" />
|
||||||
<remoteRepository
|
<remoteRepository
|
||||||
id="maven-central"
|
id="maven-central"
|
||||||
url="http://repo1.maven.org/maven2/" />
|
url="http://repo1.maven.org/maven2/" />
|
||||||
|
|||||||
@@ -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.1.5</version>
|
<version>2.3.6</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
@@ -78,20 +78,20 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.spockframework</groupId>
|
<groupId>org.spockframework</groupId>
|
||||||
<artifactId>spock-core</artifactId>
|
<artifactId>spock-core</artifactId>
|
||||||
<version>1.0-groovy-2.0-SNAPSHOT</version>
|
<version>1.0-groovy-2.3-SNAPSHOT</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Optional dependencies for using Spock -->
|
<!-- Optional dependencies for using Spock -->
|
||||||
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
|
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
|
||||||
<groupId>cglib</groupId>
|
<groupId>cglib</groupId>
|
||||||
<artifactId>cglib-nodep</artifactId>
|
<artifactId>cglib-nodep</artifactId>
|
||||||
<version>2.2.2</version>
|
<version>3.1</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency> <!-- enables mocking of classes without default constructor (together with CGLIB) -->
|
<dependency> <!-- enables mocking of classes without default constructor (together with CGLIB) -->
|
||||||
<groupId>org.objenesis</groupId>
|
<groupId>org.objenesis</groupId>
|
||||||
<artifactId>objenesis</artifactId>
|
<artifactId>objenesis</artifactId>
|
||||||
<version>1.2</version>
|
<version>2.1</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency> <!-- only necessary if Hamcrest matchers are used -->
|
<dependency> <!-- only necessary if Hamcrest matchers are used -->
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.h2database</groupId>
|
<groupId>com.h2database</groupId>
|
||||||
<artifactId>h2</artifactId>
|
<artifactId>h2</artifactId>
|
||||||
<version>1.3.168</version>
|
<version>1.4.181</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
@@ -130,7 +130,7 @@
|
|||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
</pluginRepositories>
|
</pluginRepositories>
|
||||||
|
|
||||||
<!-- Only required for spock-example build -->
|
<!-- Only required by spock-example build -->
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>foo</id>
|
<id>foo</id>
|
||||||
|
|||||||
Reference in New Issue
Block a user