Skip to content

Commit 73930b8

Browse files
Update dependency net.bytebuddy:byte-buddy to v1.18.3 (#194)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4a254a0 commit 73930b8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

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

3232
// optional dependencies for using Spock
3333
testImplementation "org.hamcrest:hamcrest-core:3.0" // only necessary if Hamcrest matchers are used
34-
testRuntimeOnly 'net.bytebuddy:byte-buddy:1.18.2' // allows mocking of classes (in addition to interfaces)
34+
testRuntimeOnly 'net.bytebuddy:byte-buddy:1.18.3' // allows mocking of classes (in addition to interfaces)
3535
testRuntimeOnly "org.objenesis:objenesis:3.4" // allows mocking of classes without default constructor (together with ByteBuddy or CGLIB)
3636

3737
// dependencies used by examples in this project

ivy.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<!-- Optional dependencies for using Spock -->
3636
<!-- enables mocking of classes (in addition to interfaces) -->
3737
<dependency org="org.objenesis" name="objenesis" rev="3.4" conf="test;sources;javadoc"/>
38-
<dependency org="net.bytebuddy" name="byte-buddy" rev="1.18.2" conf="test;sources;javadoc"/>
38+
<dependency org="net.bytebuddy" name="byte-buddy" rev="1.18.3" conf="test;sources;javadoc"/>
3939
<!-- Dependencies used by examples in this project (not required for using Spock) -->
4040
<dependency org="org.apache.groovy" name="groovy-sql" rev="5.0.3" conf="test;sources;javadoc"/>
4141
<dependency org="org.spockframework" name="spock-junit4" rev="2.4-groovy-5.0" conf="test;sources;javadoc"/>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
109109
<groupId>net.bytebuddy</groupId>
110110
<artifactId>byte-buddy</artifactId>
111-
<version>1.18.2</version>
111+
<version>1.18.3</version>
112112
<scope>test</scope>
113113
</dependency>
114114
<dependency> <!-- enables mocking of classes without default constructor (together with ByteBuddy or CGLIB) -->

0 commit comments

Comments
 (0)