Skip to content

Commit

Permalink
Do not filter out entry values starting with java. in the metadata …
Browse files Browse the repository at this point in the history
…post-processing action (#289)
  • Loading branch information
lazar-mitrovic committed Aug 16, 2022
2 parents 0e04831 + 31cb7e9 commit 1f3e9fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public DefaultGraalVmExtension(NamedDomainObjectContainer<NativeImageOptions> na
agentOpts.getEnabled().convention(false);
agentOpts.getModes().getConditional().getParallel().convention(true);
agentOpts.getMetadataCopy().getMergeWithExisting().convention(false);
agentOpts.getFilterableEntries().convention(Arrays.asList("org.gradle.", "java.", "org.junit."));
agentOpts.getFilterableEntries().convention(Arrays.asList("org.gradle.", "org.junit."));
agentOpts.getBuiltinHeuristicFilter().convention(true);
agentOpts.getBuiltinCallerFilter().convention(true);
agentOpts.getEnableExperimentalPredefinedClasses().convention(false);
Expand Down

0 comments on commit 1f3e9fd

Please sign in to comment.