From 8574fc5bb6ac7edae99306b06c0a610f7da60048 Mon Sep 17 00:00:00 2001 From: Carlos Sanchez Date: Tue, 12 May 2026 21:59:37 +0200 Subject: [PATCH] fix: upgrade Mockito and JaCoCo for Java 25 compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 73e0ccbaa..ff645bfbe 100644 --- a/pom.xml +++ b/pom.xml @@ -55,7 +55,7 @@ 1.44.0 4.33.5 5.11.4 - 5.20.0 + 5.23.0 1.6.0 2.20.2 5.3.2 @@ -454,7 +454,7 @@ org.jacoco jacoco-maven-plugin - 0.8.12 + 0.8.14