Update to Spock-1.3 and gradle 5.4.1, Update ByteBuddy

This commit is contained in:
Leonard Brünings
2019-05-21 13:52:48 +02:00
parent 6218e48cca
commit 4d6d8f7bbe
6 changed files with 102 additions and 70 deletions
+3 -3
View File
@@ -15,12 +15,12 @@ repositories {
dependencies {
// mandatory dependencies for using Spock
compile "org.codehaus.groovy:groovy-all:2.4.15"
testCompile "org.spockframework:spock-core:1.2-groovy-2.4"
compile "org.codehaus.groovy:groovy-all:2.5.7"
testCompile "org.spockframework:spock-core:1.3-groovy-2.5"
// optional dependencies for using Spock
testCompile "org.hamcrest:hamcrest-core:1.3" // only necessary if Hamcrest matchers are used
testRuntime "net.bytebuddy:byte-buddy:1.8.21" // allows mocking of classes (in addition to interfaces)
testRuntime "net.bytebuddy:byte-buddy:1.9.3" // allows mocking of classes (in addition to interfaces)
testRuntime "org.objenesis:objenesis:2.6" // allows mocking of classes without default constructor (together with CGLIB)
// dependencies used by examples in this project