Skip to content

Commit eda4031

Browse files
authored
Bump Mockito to latest compatible version. (#1032)
Configure dependabot to avoid bumping Mockito to v. 5.
1 parent 35b8a43 commit eda4031

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ updates:
77
labels:
88
- "maven"
99
- "dependencies"
10+
ignore:
11+
# Ignore Mockito 5.X.X as it does not support Java 8
12+
- dependency-name: mockito-*
13+
update-types: ["version-update:semver-major"]

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,13 +244,13 @@
244244
<dependency>
245245
<groupId>org.mockito</groupId>
246246
<artifactId>mockito-core</artifactId>
247-
<version>4.9.0</version>
247+
<version>4.11.0</version>
248248
<scope>test</scope>
249249
</dependency>
250250
<dependency>
251251
<groupId>org.mockito</groupId>
252252
<artifactId>mockito-inline</artifactId>
253-
<version>4.9.0</version>
253+
<version>4.11.0</version>
254254
<scope>test</scope>
255255
</dependency>
256256
<dependency>

0 commit comments

Comments
 (0)