From 2a9d3fba407363797e0b379e8405831f0029ae12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89amonn=20McManus?= Date: Wed, 24 Dec 2025 13:04:15 -0800 Subject: [PATCH] Update `test-graal-native-image`. With the latest dependencies, this was failing with this message: ``` Error: Classes that should be initialized at run time got initialized during image building: org.junit.jupiter.engine.discovery.MethodSegmentResolver was unintentionally initialized at build time. ``` I don't know enough about GraalVM to be sure of what the best fix is, but Gemini suggested the thing I'm doing here. It seems to work. --- test-graal-native-image/pom.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test-graal-native-image/pom.xml b/test-graal-native-image/pom.xml index 44b7ac010c..42693d5485 100644 --- a/test-graal-native-image/pom.xml +++ b/test-graal-native-image/pom.xml @@ -39,7 +39,7 @@ org.junit junit-bom - 6.0.0 + 6.0.1 pom import @@ -137,7 +137,7 @@ org.graalvm.buildtools native-maven-plugin - 0.11.2 + 0.11.3 true @@ -150,6 +150,7 @@ -H:+ReportExceptionStackTraces + --initialize-at-build-time=org.junit.jupiter.engine.discovery.MethodSegmentResolver