We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1971e04 commit 1425a30Copy full SHA for 1425a30
substratevm/src/com.oracle.svm.driver/src/com/oracle/svm/driver/NativeImage.java
@@ -1851,6 +1851,11 @@ private Set<String> getImplicitlyRequiredSystemModules(Collection<Path> modulePa
1851
.filter(p -> !p.startsWith(config.rootDir))
1852
.collect(Collectors.toSet());
1853
1854
+ System.out.println("---");
1855
+ System.out.println(modulePath);
1856
+ System.out.println(applicationModulePath);
1857
1858
+
1859
ModuleFinder finder = ModuleFinder.of(applicationModulePath.toArray(Path[]::new));
1860
Set<String> modules = finder.findAll().stream()
1861
.map(mref -> mref.descriptor().name())
0 commit comments