Skip to content

Commit 12f84a3

Browse files
Update dependency org.objenesis:objenesis to v3.5 (#200)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4d89f09 commit 12f84a3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies {
3232
// optional dependencies for using Spock
3333
testImplementation "org.hamcrest:hamcrest-core:3.0" // only necessary if Hamcrest matchers are used
3434
testRuntimeOnly 'net.bytebuddy:byte-buddy:1.18.3' // allows mocking of classes (in addition to interfaces)
35-
testRuntimeOnly "org.objenesis:objenesis:3.4" // allows mocking of classes without default constructor (together with ByteBuddy or CGLIB)
35+
testRuntimeOnly "org.objenesis:objenesis:3.5" // allows mocking of classes without default constructor (together with ByteBuddy or CGLIB)
3636

3737
// dependencies used by examples in this project
3838
testRuntimeOnly "com.h2database:h2:2.4.240"

ivy.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependency org="org.junit.platform" name="junit-platform-launcher" rev="6.0.1" conf="test;sources;javadoc"/>
3535
<!-- Optional dependencies for using Spock -->
3636
<!-- enables mocking of classes (in addition to interfaces) -->
37-
<dependency org="org.objenesis" name="objenesis" rev="3.4" conf="test;sources;javadoc"/>
37+
<dependency org="org.objenesis" name="objenesis" rev="3.5" conf="test;sources;javadoc"/>
3838
<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"/>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
<dependency> <!-- enables mocking of classes without default constructor (together with ByteBuddy or CGLIB) -->
115115
<groupId>org.objenesis</groupId>
116116
<artifactId>objenesis</artifactId>
117-
<version>3.4</version>
117+
<version>3.5</version>
118118
<scope>test</scope>
119119
</dependency>
120120
<dependency> <!-- only required if Hamcrest matchers are used -->

0 commit comments

Comments
 (0)