Update to spock-1.1
This commit is contained in:
+3
-3
@@ -15,12 +15,12 @@ repositories {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// mandatory dependencies for using Spock
|
// mandatory dependencies for using Spock
|
||||||
compile "org.codehaus.groovy:groovy-all:2.4.1"
|
compile "org.codehaus.groovy:groovy-all:2.4.10"
|
||||||
testCompile "org.spockframework:spock-core:1.1-groovy-2.4-rc-3"
|
testCompile "org.spockframework:spock-core:1.1-groovy-2.4"
|
||||||
|
|
||||||
// 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
|
||||||
testRuntime "cglib:cglib-nodep:3.2.4" // allows mocking of classes (in addition to interfaces)
|
testRuntime "net.bytebuddy:byte-buddy:1.6.5" // allows mocking of classes (in addition to interfaces)
|
||||||
testRuntime "org.objenesis:objenesis:2.5.1" // allows mocking of classes without default constructor (together with CGLIB)
|
testRuntime "org.objenesis:objenesis:2.5.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
|
||||||
|
|||||||
@@ -59,19 +59,19 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.spockframework</groupId>
|
<groupId>org.spockframework</groupId>
|
||||||
<artifactId>spock-core</artifactId>
|
<artifactId>spock-core</artifactId>
|
||||||
<version>1.1-groovy-2.4-rc-3</version>
|
<version>1.1-groovy-2.4</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Optional dependencies for using Spock -->
|
<!-- Optional dependencies for using Spock -->
|
||||||
<dependency> <!-- use a specific Groovy version rather than the one specified by spock-core -->
|
<dependency> <!-- use a specific Groovy version rather than the one specified by spock-core -->
|
||||||
<groupId>org.codehaus.groovy</groupId>
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
<artifactId>groovy-all</artifactId>
|
<artifactId>groovy-all</artifactId>
|
||||||
<version>2.4.7</version>
|
<version>2.4.10</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
|
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
|
||||||
<groupId>cglib</groupId>
|
<groupId>net.bytebuddy</groupId>
|
||||||
<artifactId>cglib-nodep</artifactId>
|
<artifactId>byte-buddy</artifactId>
|
||||||
<version>3.2.4</version>
|
<version>1.6.5</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) -->
|
||||||
|
|||||||
Reference in New Issue
Block a user