Skip to content

Commit b02c28f

Browse files
Update dependency org.hamcrest:hamcrest-core to v3 (#157)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 67f53da commit b02c28f

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
@@ -28,7 +28,7 @@ dependencies {
2828
testImplementation "org.spockframework:spock-junit4" // you can remove this if your code does not rely on old JUnit 4 rules
2929

3030
// optional dependencies for using Spock
31-
testImplementation "org.hamcrest:hamcrest-core:2.2" // only necessary if Hamcrest matchers are used
31+
testImplementation "org.hamcrest:hamcrest-core:3.0" // only necessary if Hamcrest matchers are used
3232
testRuntimeOnly 'net.bytebuddy:byte-buddy:1.15.8' // 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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
<dependency> <!-- only required if Hamcrest matchers are used -->
110110
<groupId>org.hamcrest</groupId>
111111
<artifactId>hamcrest-core</artifactId>
112-
<version>2.2</version>
112+
<version>3.0</version>
113113
<scope>test</scope>
114114
</dependency>
115115
<!-- Dependencies used by examples in this project (not required for using Spock) -->

0 commit comments

Comments
 (0)