1.) create-image mode is renamed create-app-image mode. Change the help text and sample usage accordingly
2.) remove help text for --files option, and update help text for --input accordingly. Update sample usage accordingly if necessary.
3.) The option "--add-launcher" will be renamed "--alt-launcher". Update the help text sccordingly.
4.) Fix sample usage to always put --module-path before --module (or -p before -m) to be consistent with other tools.
5.) fix 2 typos in sample usage:
jlink --output app.runtime -m moduleName -p modulePath \
--no-header-files [<additional jlink options>...]
jpackage -o outputdir -n name -m moduleName/className \
--runtime-image app-runtime
- the first command outputs to app.runtime and second command uses app-runtime. (make the same)
- the second command is missing the mode. It should specify create-image (or now create-app-image)
2.) remove help text for --files option, and update help text for --input accordingly. Update sample usage accordingly if necessary.
3.) The option "--add-launcher" will be renamed "--alt-launcher". Update the help text sccordingly.
4.) Fix sample usage to always put --module-path before --module (or -p before -m) to be consistent with other tools.
5.) fix 2 typos in sample usage:
jlink --output app.runtime -m moduleName -p modulePath \
--no-header-files [<additional jlink options>...]
jpackage -o outputdir -n name -m moduleName/className \
--runtime-image app-runtime
- the first command outputs to app.runtime and second command uses app-runtime. (make the same)
- the second command is missing the mode. It should specify create-image (or now create-app-image)
- relates to
-
JDK-8221777 CLI changes from jpackage EA5 feedback
- Resolved