< prev index next >

src/jdk.jpackage/share/classes/jdk/jpackage/internal/StandardBundlerParam.java

Print this page

        

*** 524,534 **** PREDEFINED_RUNTIME_IMAGE.getID())); } File image = appBuilder.getRuntimeImageDir(topImage); // copy whole runtime, need to skip jmods and src.zip final List<String> excludes = Arrays.asList("jmods", "src.zip"); ! IOUtils.copyRecursive(image.toPath(), appBuilder.getRoot(), excludes); // if module-path given - copy modules to appDir/mods List<Path> modulePath = StandardBundlerParam.MODULE_PATH.fetchFrom(params); List<Path> defaultModulePath = getDefaultModulePath(); --- 524,534 ---- PREDEFINED_RUNTIME_IMAGE.getID())); } File image = appBuilder.getRuntimeImageDir(topImage); // copy whole runtime, need to skip jmods and src.zip final List<String> excludes = Arrays.asList("jmods", "src.zip"); ! IOUtils.copyRecursive(image.toPath(), appBuilder.getRuntimeRoot(), excludes); // if module-path given - copy modules to appDir/mods List<Path> modulePath = StandardBundlerParam.MODULE_PATH.fetchFrom(params); List<Path> defaultModulePath = getDefaultModulePath();
< prev index next >