Update dependency net.bytebuddy:byte-buddy to v1.14.8
This commit is contained in:
committed by
Leonard Brünings
parent
8126aba693
commit
af96b8ba92
+1
-1
@@ -29,7 +29,7 @@ dependencies {
|
|||||||
|
|
||||||
// optional dependencies for using Spock
|
// optional dependencies for using Spock
|
||||||
testImplementation "org.hamcrest:hamcrest-core:2.2" // only necessary if Hamcrest matchers are used
|
testImplementation "org.hamcrest:hamcrest-core:2.2" // only necessary if Hamcrest matchers are used
|
||||||
testRuntimeOnly 'net.bytebuddy:byte-buddy:1.14.7' // allows mocking of classes (in addition to interfaces)
|
testRuntimeOnly 'net.bytebuddy:byte-buddy:1.14.8' // allows mocking of classes (in addition to interfaces)
|
||||||
testRuntimeOnly "org.objenesis:objenesis:3.3" // allows mocking of classes without default constructor (together with ByteBuddy or CGLIB)
|
testRuntimeOnly "org.objenesis:objenesis:3.3" // allows mocking of classes without default constructor (together with ByteBuddy or CGLIB)
|
||||||
|
|
||||||
// dependencies used by examples in this project
|
// dependencies used by examples in this project
|
||||||
|
|||||||
@@ -97,7 +97,7 @@
|
|||||||
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
|
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
|
||||||
<groupId>net.bytebuddy</groupId>
|
<groupId>net.bytebuddy</groupId>
|
||||||
<artifactId>byte-buddy</artifactId>
|
<artifactId>byte-buddy</artifactId>
|
||||||
<version>1.14.7</version>
|
<version>1.14.8</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency> <!-- enables mocking of classes without default constructor (together with ByteBuddy or CGLIB) -->
|
<dependency> <!-- enables mocking of classes without default constructor (together with ByteBuddy or CGLIB) -->
|
||||||
|
|||||||
Reference in New Issue
Block a user