Skip to content

Commit 34cdd13

Browse files
Update dependency net.bytebuddy:byte-buddy to v1.17.6
1 parent 963fd34 commit 34cdd13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929

3030
// optional dependencies for using Spock
3131
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)
3333
testRuntimeOnly "org.objenesis:objenesis:3.4" // allows mocking of classes without default constructor (together with ByteBuddy or CGLIB)
3434

3535
// dependencies used by examples in this project

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
9898
<groupId>net.bytebuddy</groupId>
9999
<artifactId>byte-buddy</artifactId>
100-
<version>1.17.5</version>
100+
<version>1.17.6</version>
101101
<scope>test</scope>
102102
</dependency>
103103
<dependency> <!-- enables mocking of classes without default constructor (together with ByteBuddy or CGLIB) -->

0 commit comments

Comments
 (0)