Skip to content

Commit f821dae

Browse files
carlossgclaude
andcommitted
fix: upgrade Mockito and JaCoCo for Java 25 compatibility
Mockito 5.20.0 and JaCoCo 0.8.12 both bundle an ASM version that does not recognize Java 25 class file format (major version 69), causing IllegalArgumentException at test time. Upgrading to versions released after Java 25 GA resolves the issue. - mockito: 5.20.0 → 5.23.0 - jacoco-maven-plugin: 0.8.12 → 0.8.14 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent d837ef0 commit f821dae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<google.genai.version>1.44.0</google.genai.version>
5656
<protobuf.version>4.33.5</protobuf.version>
5757
<junit.version>5.11.4</junit.version>
58-
<mockito.version>5.20.0</mockito.version>
58+
<mockito.version>5.23.0</mockito.version>
5959
<java-websocket.version>1.6.0</java-websocket.version>
6060
<jackson.version>2.20.2</jackson.version>
6161
<okhttp.version>5.3.2</okhttp.version>
@@ -454,7 +454,7 @@
454454
<plugin>
455455
<groupId>org.jacoco</groupId>
456456
<artifactId>jacoco-maven-plugin</artifactId>
457-
<version>0.8.12</version>
457+
<version>0.8.14</version>
458458
<executions>
459459
<execution>
460460
<goals>

0 commit comments

Comments
 (0)