Skip to content

Commit

Permalink
Ignore warning about --allow-incomplete-classpath in helidon quickstart
Browse files Browse the repository at this point in the history
--allow-incomplete-classpath will not be available starting from
GraalVM/Mandrel 22.1

Fixes #76
  • Loading branch information
zakkak committed Mar 11, 2022
1 parent 1513265 commit 5c39385
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,13 @@ public enum WhitelistLogLines {

HELIDON_QUICKSTART_SE(new Pattern[]{
// Unused argument on new Graal
Pattern.compile(".*Ignoring server-mode native-image argument --no-server.*")
Pattern.compile(".*Ignoring server-mode native-image argument --no-server.*"),
// --allow-incomplete-classpath not available in new GraalVM https://github.com/Karm/mandrel-integration-tests/issues/76
Pattern.compile(".*Using a deprecated option --allow-incomplete-classpath from " +
"jar:file:.*mandrel-integration-tests/apps/helidon-quickstart-se/target/libs/helidon-webserver-2.2.2.jar" +
"!/META-INF/native-image/io.helidon.webserver/helidon-webserver/native-image.properties. " +
"Allowing an incomplete classpath is now the default. " +
"Use --link-at-build-time to report linking errors at image build time for a class or package.*")
}),

QUARKUS_BUILDER_IMAGE_ENCODING(new Pattern[]{
Expand Down

0 comments on commit 5c39385

Please sign in to comment.