Skip to content

Commit

Permalink
Fix build time initialization error with JUnit 5.9.0 (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
melix committed Sep 19, 2022
1 parent cb61940 commit 2638b04
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -58,7 +58,9 @@ public void onLoad(NativeImageConfiguration config) {
"org.junit.platform.launcher.core.LauncherConfigurationParameters",
"org.junit.platform.commons.logging.LoggerFactory",
"org.junit.platform.engine.UniqueIdFormat",
"org.junit.platform.commons.util.ReflectionUtils"
"org.junit.platform.commons.util.ReflectionUtils",
// https://github.com/graalvm/native-build-tools/issues/300
"org.junit.platform.reporting.open.xml.OpenTestReportGeneratingListener"
};
for (String className : buildTimeInitializedClasses) {
config.initializeAtBuildTime(className);
Expand Down

0 comments on commit 2638b04

Please sign in to comment.