File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ dependencies {
29
29
30
30
// optional dependencies for using Spock
31
31
testImplementation " org.hamcrest:hamcrest-core:3.0" // only necessary if Hamcrest matchers are used
32
- testRuntimeOnly ' net.bytebuddy:byte-buddy:1.17.5 ' // allows mocking of classes (in addition to interfaces)
32
+ testRuntimeOnly ' net.bytebuddy:byte-buddy:1.17.6 ' // allows mocking of classes (in addition to interfaces)
33
33
testRuntimeOnly " org.objenesis:objenesis:3.4" // allows mocking of classes without default constructor (together with ByteBuddy or CGLIB)
34
34
35
35
// dependencies used by examples in this project
Original file line number Diff line number Diff line change 97
97
<dependency > <!-- enables mocking of classes (in addition to interfaces) -->
98
98
<groupId >net.bytebuddy</groupId >
99
99
<artifactId >byte-buddy</artifactId >
100
- <version >1.17.5 </version >
100
+ <version >1.17.6 </version >
101
101
<scope >test</scope >
102
102
</dependency >
103
103
<dependency > <!-- enables mocking of classes without default constructor (together with ByteBuddy or CGLIB) -->
You can’t perform that action at this time.
0 commit comments