Skip to content

Commit

Permalink
Update dependency net.bytebuddy:byte-buddy to v1.14.19
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Aug 16, 2024
1 parent 64bc449 commit c4e9f28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies {

// optional dependencies for using Spock
testImplementation "org.hamcrest:hamcrest-core:2.2" // only necessary if Hamcrest matchers are used
testRuntimeOnly 'net.bytebuddy:byte-buddy:1.14.17' // allows mocking of classes (in addition to interfaces)
testRuntimeOnly 'net.bytebuddy:byte-buddy:1.14.19' // allows mocking of classes (in addition to interfaces)
testRuntimeOnly "org.objenesis:objenesis:3.4" // allows mocking of classes without default constructor (together with ByteBuddy or CGLIB)

// dependencies used by examples in this project
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.14.17</version>
<version>1.14.19</version>
<scope>test</scope>
</dependency>
<dependency> <!-- enables mocking of classes without default constructor (together with ByteBuddy or CGLIB) -->
Expand Down

0 comments on commit c4e9f28

Please sign in to comment.