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