< prev index next >

src/jdk.jlink/share/classes/jdk/tools/jmod/JmodTask.java

Print this page

        

*** 32,41 **** --- 32,42 ---- import java.io.InputStream; import java.io.OutputStream; import java.io.PrintWriter; import java.io.UncheckedIOException; import java.lang.module.Configuration; + import java.lang.module.FindException; import java.lang.module.ModuleReader; import java.lang.module.ModuleReference; import java.lang.module.ModuleFinder; import java.lang.module.ModuleDescriptor; import java.lang.module.ModuleDescriptor.Exports;
*** 849,860 **** system = ModuleFinder.ofSystem(); } // get a resolved module graph Configuration config = null; try { ! config = Configuration.empty().resolveRequires(system, finder, roots); ! } catch (ResolutionException e) { throw new CommandException("err.module.resolution.fail", e.getMessage()); } this.moduleName = name; this.configuration = config; --- 850,861 ---- system = ModuleFinder.ofSystem(); } // get a resolved module graph Configuration config = null; try { ! config = Configuration.empty().resolve(system, finder, roots); ! } catch (FindException | ResolutionException e) { throw new CommandException("err.module.resolution.fail", e.getMessage()); } this.moduleName = name; this.configuration = config;
< prev index next >