From fbcf48f85fcfd4df468383976cdff39cd1010953 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonard=20Br=C3=BCnings?= Date: Tue, 9 May 2017 00:56:31 +0200 Subject: [PATCH] Update to spock-1.1 --- build.gradle | 6 +++--- pom.xml | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index f21180d..65d8d6b 100755 --- a/build.gradle +++ b/build.gradle @@ -15,12 +15,12 @@ repositories { dependencies { // mandatory dependencies for using Spock - compile "org.codehaus.groovy:groovy-all:2.4.1" - testCompile "org.spockframework:spock-core:1.1-groovy-2.4-rc-3" + compile "org.codehaus.groovy:groovy-all:2.4.10" + testCompile "org.spockframework:spock-core:1.1-groovy-2.4" // optional dependencies for using Spock 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) // dependencies used by examples in this project diff --git a/pom.xml b/pom.xml index df740b7..a57cd6d 100644 --- a/pom.xml +++ b/pom.xml @@ -59,19 +59,19 @@ org.spockframework spock-core - 1.1-groovy-2.4-rc-3 + 1.1-groovy-2.4 test org.codehaus.groovy groovy-all - 2.4.7 + 2.4.10 - cglib - cglib-nodep - 3.2.4 + net.bytebuddy + byte-buddy + 1.6.5 test