27 MSG_Help=Usage: jpackage <options>\n\ |
27 MSG_Help=Usage: jpackage <options>\n\ |
28 \n\ |
28 \n\ |
29 Sample usages:\n\ |
29 Sample usages:\n\ |
30 --------------\n\ |
30 --------------\n\ |
31 \ Generate a non-modular application image:\n\ |
31 \ Generate a non-modular application image:\n\ |
32 \ jpackage --package-type app-image -o outputdir -i inputdir -n name \\\n\ |
32 \ jpackage --package-type app-image -d destdir -i inputdir -n name \\\n\ |
33 \ --main-class className --main-jar MyJar.jar\n\ |
33 \ --main-class className --main-jar MyJar.jar\n\ |
34 \ Generate a modular application image:\n\ |
34 \ Generate a modular application image:\n\ |
35 \ jpackage --package-type app-image -o outputdir -n name -p modulePath -m moduleName/className\n\ |
35 \ jpackage --package-type app-image -n name -p modulePath \\\n\ |
|
36 \ -m moduleName/className\n\ |
36 \ To provide your own options to jlink, run jlink separately:\n\ |
37 \ To provide your own options to jlink, run jlink separately:\n\ |
37 \ jlink --output appRuntimeImage -p ModulePath -m moduleName \\\n\ |
38 \ jlink --output appRuntimeImage -p ModulePath -m moduleName \\\n\ |
38 \ --no-header-files [<additional jlink options>...]\n\ |
39 \ --no-header-files [<additional jlink options>...]\n\ |
39 \ jpackage --package-type app-image -o outputdir -n name \\\n\ |
40 \ jpackage --package-type app-image -n name \\\n\ |
40 \ -m moduleName/className --runtime-image appRuntimeImage\n\ |
41 \ -m moduleName/className --runtime-image appRuntimeImage\n\ |
41 \ Generate an application package:\n\ |
42 \ Generate an application package:\n\ |
42 \ jpackage --package-type <type> -o outputdir -n name \\\n\ |
43 \ jpackage --package-type <type> -n name \\\n\ |
43 \ -p modulePath -m moduleName/className\n\ |
44 \ -p modulePath -m moduleName/className\n\ |
44 \ jpackage --package-type <type> -i inputdir -o outputdir -n name \\\n\ |
45 \ jpackage --package-type <type> -i inputdir -n name \\\n\ |
45 \ --main-class package.ClassName --main-jar MyJar.jar\n\ |
46 \ --main-class package.ClassName --main-jar MyJar.jar\n\ |
46 \ jpackage --package-type <type> -o outputdir -n name \\\n\ |
47 \ jpackage --package-type <type> -n name \\\n\ |
47 \ --app-image <app image dir>\n\ |
48 \ --app-image <app image dir>\n\ |
48 \ Generate a Java runtime package:\n\ |
49 \ Generate a Java runtime package:\n\ |
49 \ jpackage -o outputdir -n name --runtime-image <runtime-image>\n\ |
50 \ jpackage -n name --runtime-image <runtime-image>\n\ |
50 \n\ |
51 \n\ |
51 Generic Options:\n\ |
52 Generic Options:\n\ |
52 \ @<filename> \n\ |
53 \ @<filename> \n\ |
53 \ Read options and/or mode from a file \n\ |
54 \ Read options and/or mode from a file \n\ |
54 \ This option can be used multiple times.\n\ |
55 \ This option can be used multiple times.\n\ |
66 \ --help -h \n\ |
67 \ --help -h \n\ |
67 \ Print the usage text with a list and description of each valid\n\ |
68 \ Print the usage text with a list and description of each valid\n\ |
68 \ option for the current platform to the output stream, and exit\n\ |
69 \ option for the current platform to the output stream, and exit\n\ |
69 \ --name -n <name>\n\ |
70 \ --name -n <name>\n\ |
70 \ Name of the application and/or package\n\ |
71 \ Name of the application and/or package\n\ |
71 \ --output -o <output path>\n\ |
72 \ --dest -d <destination path>\n\ |
72 \ Path where generated output file is placed\n\ |
73 \ Path where generated output file is placed\n\ |
|
74 \ Defaults to the current working directory.\n\ |
73 \ (absolute path or relative to the current directory)\n\ |
75 \ (absolute path or relative to the current directory)\n\ |
74 \ --temp <file path>\n\ |
76 \ --temp <file path>\n\ |
75 \ Path of a new or empty directory used to create temporary files\n\ |
77 \ Path of a new or empty directory used to create temporary files\n\ |
76 \ (absolute path or relative to the current directory)\n\ |
78 \ (absolute path or relative to the current directory)\n\ |
77 \ If specified, the temp dir will not be removed upon the task\n\ |
79 \ If specified, the temp dir will not be removed upon the task\n\ |
266 MSG_Help_mac_linux_install_dir=\ |
268 MSG_Help_mac_linux_install_dir=\ |
267 \Absolute path of the installation directory of the application\n\ |
269 \Absolute path of the installation directory of the application\n\ |
268 |
270 |
269 MSG_Help_default_install_dir=\ |
271 MSG_Help_default_install_dir=\ |
270 \Absolute path of the installation directory of the application on OS X\n\ |
272 \Absolute path of the installation directory of the application on OS X\n\ |
271 \ or Linux. Relative sub-path of the installation location of the application\n\ |
273 \ or Linux. Relative sub-path of the installation location of\n\ |
272 \ such as "Program Files" or "AppData" on Windows.\n\ |
274 \ the application such as "Program Files" or "AppData" on Windows.\n\ |
273 |
275 |
274 MSG_Help_no_args=Usage: jpackage <mode> <options>\n\ |
276 MSG_Help_no_args=Usage: jpackage <mode> <options>\n\ |
275 \Use jpackage --help (or -h) for a list of possible options\ |
277 \Use jpackage --help (or -h) for a list of possible options\ |
276 |
278 |