Skip to content

Commit 1d9e2fb

Browse files
committed
Upgrade Mockito to 4.11.0 for Java 8/11 compatibility in commons modules
Mockito 5.14.2 requires Java 17+, which breaks CI with Java 8/11. Upgrade to 4.11.0 (last Java 8-compatible version) for parsing-commons and segment-commons which have no breaking API changes. Other modules remain on 1.10.19 to avoid extensive test refactoring. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com> AI-Session-Id: c83b3557-2c02-4d13-aaa4-273b7340163d AI-Tool: claude-code AI-Model: unknown
1 parent 448475f commit 1d9e2fb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

parsing-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>org.mockito</groupId>
3131
<artifactId>mockito-core</artifactId>
32-
<version>1.10.19</version>
32+
<version>4.11.0</version>
3333
<scope>test</scope>
3434
</dependency>
3535
</dependencies>

segment-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>org.mockito</groupId>
3939
<artifactId>mockito-core</artifactId>
40-
<version>1.10.19</version>
40+
<version>4.11.0</version>
4141
<scope>test</scope>
4242
</dependency>
4343
</dependencies>

0 commit comments

Comments
 (0)