author | herrick |
Wed, 12 Dec 2018 08:27:16 -0500 | |
branch | JDK-8200758-branch |
changeset 57071 | 94e9270166f0 |
parent 57060 | 5103d6d2e796 |
child 57078 | db003bfc5bf7 |
permissions | -rw-r--r-- |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
1 |
# |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
2 |
# Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
4 |
# |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
10 |
# |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
15 |
# accompanied this code). |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
16 |
# |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
20 |
# |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
23 |
# questions. |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
24 |
# |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
25 |
# |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
26 |
|
57039 | 27 |
MSG_Help_common=Usage: jpackage <mode> <options>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
28 |
\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
29 |
where mode is one of: \n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
30 |
\ create-image\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
31 |
\ Generates a platform-specific application image.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
32 |
\ create-installer <type>\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
33 |
\ Generates a platform-specific installer for the application.\n\ |
56941
20568f1e1aa7
JDK-8211282: Support creation of 'exe' installers on Windows.
herrick
parents:
56933
diff
changeset
|
34 |
\ Valid values for "type" are "msi", "exe", "rpm", "deb", "dmg",\n\ |
20568f1e1aa7
JDK-8211282: Support creation of 'exe' installers on Windows.
herrick
parents:
56933
diff
changeset
|
35 |
\ "pkg", and "pkg-app-store".\n\ |
57071 | 36 |
\ If "type" is omitted, all supported types of installable\n\ |
37 |
\ packages for the current platform will be generated.\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
38 |
\ create-jre-installer <type>\n\ |
57071 | 39 |
\ Generates a platform-specific installer for JRE.\n\ |
56941
20568f1e1aa7
JDK-8211282: Support creation of 'exe' installers on Windows.
herrick
parents:
56933
diff
changeset
|
40 |
\ Valid values for "type" are "msi", "exe", "rpm", "deb", "dmg", \n\ |
20568f1e1aa7
JDK-8211282: Support creation of 'exe' installers on Windows.
herrick
parents:
56933
diff
changeset
|
41 |
\ and "pkg".\n\ |
57071 | 42 |
\ If "type" is omitted, all supported types of installable\n\ |
43 |
\ packages for the current platform will be generated.\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
44 |
\ \n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
45 |
Sample usages:\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
46 |
--------------\n\ |
57071 | 47 |
\ Generate an application image from a non-modular jar file:\n\ |
48 |
\ jpackage create-image --input inputdir --output outputdir \\\n\ |
|
49 |
\ --name AppName --class package.ClassName --main-jar MyJar.jar\n\ |
|
50 |
\ jpackage create-image -i inputdir -o outputdir -n AppName \\\n\ |
|
51 |
\ -c package.ClassName -j MyJar.jar\n\ |
|
52 |
\ Generate an application image from a modular jar file:\n\ |
|
53 |
\ jpackage create-image --output outputdir --name AppName \\\n\ |
|
54 |
\ --class package.ClassName -module moduleName -p modulePath\n\ |
|
55 |
\ jpackage create-image --o outputdir -n AppName \\\n\ |
|
56 |
\ -c package.ClassName -m moduleName -p modulePath\n\ |
|
57 |
\ Generate an application installer:\n\ |
|
58 |
\ jpackage create-installer -i inputdir -o outputdir \\\n\ |
|
59 |
\ -n "Installer Name" -c package.ClassName -j MyJar.jar\n\ |
|
60 |
\ jpackage create-inataller -o outputdir -n "Installer Name" \\\n\ |
|
61 |
--app-image <app image dir>\n\ |
|
62 |
\ Generate a JRE installer:\n\ |
|
63 |
\ jpackage create-jre-installer -name <jre-name> -output outputdir\n\ |
|
64 |
\ jpackage create-jre-installer -n <jre-name> -o outputdir \\\n\ |
|
65 |
\ --runtime-image <path>\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
66 |
\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
67 |
The following options are valid for all platforms:\n\ |
57060 | 68 |
\ @<filename> \n\ |
57071 | 69 |
\ Read options and/or mode from a file \n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
70 |
\ --help -h \n\ |
57071 | 71 |
\ Print the usage text with a list and description of each valid\n\ |
72 |
\ option for the current platform to the output stream, and exit\n\ |
|
73 |
\ --version -v\n\ |
|
74 |
\ Print the product version to the output stream and exit\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
75 |
\ --output -o <output dir>\n\ |
57071 | 76 |
\ Name of the directory where generated output file is placed\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
77 |
\ --input -i <input dir>\n\ |
57071 | 78 |
\ Name of the input directory that contains the files to package\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
79 |
\ --files -f <input files>\n\ |
57071 | 80 |
\ A {0} separated list of files in the input dir to be packaged\n\ |
57025 | 81 |
\ If omitted, all files in the input directory will be packaged.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
82 |
\ --name -n <application name>\n\ |
57071 | 83 |
\ Name of the application\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
84 |
\ --main-jar -j <main jar name>\n\ |
57071 | 85 |
\ The main JAR of the application\n\ |
86 |
\ This JAR should have the main-class, and is relative\n\ |
|
87 |
\ to the assembled application directory.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
88 |
\ --class -c <class name>\n\ |
57071 | 89 |
\ Qualified name of the application class to execute\n\ |
90 |
\ --app-version <version string>\n\ |
|
91 |
\ Version of the application\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
92 |
\ --arguments -a <main class arguments>\n\ |
57071 | 93 |
\ Command line arguments to pass to the main class if no\n\ |
94 |
\ arguments are specified by the launcher\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
95 |
\ --icon <icon file name>\n\ |
57071 | 96 |
\ Icon of the application bundle\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
97 |
\ --singleton\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
98 |
\ Prevents multiple instances of the application from launching\n\ |
57071 | 99 |
\ (see SingleInstanceService API for more details)\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
100 |
\ --identifier <id string>\n\ |
57071 | 101 |
\ Machine readable identifier of the application\n\ |
102 |
\ The format must be a DNS name in reverse order,\n\ |
|
103 |
\ such as com.example.myapplication.\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
104 |
\ --verbose\n\ |
57071 | 105 |
\ Enables verbose output\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
106 |
\ --strip-native-commands\n\ |
57071 | 107 |
\ Removes native executables from the custom run-time images\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
108 |
\ --jvm-args <java vm arguments>\n\ |
57071 | 109 |
\ JVM flags and options to pass to the application\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
110 |
\ --file-associations <file path>\n\ |
57071 | 111 |
\ Properties file that contains list of key,value pairs that\n\ |
112 |
\ describe a file association\n\ |
|
113 |
\ "extension", "mime-type", "icon", and "description"\n\ |
|
114 |
\ can be used as keys for the association.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
115 |
\ --secondary-launcher <file path>\n\ |
57071 | 116 |
\ Properties file that contains a collection of options\n\ |
117 |
\ for a secondary launcher\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
118 |
\ --build-root <file path>\n\ |
57071 | 119 |
\ Directory in which to use and place temporary files\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
120 |
\ --runtime-image <file path>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
121 |
\ Location of the predefined runtime image that is used to build\n\ |
57071 | 122 |
\ an application image and installable package\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
123 |
\ --app-image <file path>\n\ |
57071 | 124 |
\ Location of the predefined application image that is used\n\ |
125 |
\ to build an installable package\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
126 |
\ --install-dir <file path>\n\ |
57071 | 127 |
\ Installation directory of the application\n\ |
128 |
\ This option is ignored on Windows, use --win-dir-chooser to\n\ |
|
129 |
\ provide user the ability to choose the installation directory.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
130 |
\ --license-file <file name>\n\ |
57071 | 131 |
\ The license file, relative to the input directory\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
132 |
\ --copyright <copyright string>\n\ |
57071 | 133 |
\ Copyright for the application\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
134 |
\ --description <description string>\n\ |
57071 | 135 |
\ Description of the application\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
136 |
\ --category <category string>\n\ |
57071 | 137 |
\ Category or group of the application\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
138 |
\ --vendor <vendor string>\n\ |
57071 | 139 |
\ Vendor of the application\n\ |
140 |
\ --force Allow the deletion of any existing output root directory\n\ |
|
141 |
\ when creating an Application image\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
142 |
\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
143 |
Modular options:\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
144 |
\ --module -m <module name>\n\ |
57071 | 145 |
\ Main module of the application\n\ |
146 |
\ This module must contain the main-class,\n\ |
|
147 |
\ and be located on the module path.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
148 |
\ --module-path -p <module path>\n\ |
57071 | 149 |
\ Path JLink looks in for modules when packaging the Java Runtime\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
150 |
\ --add-modules <module list>\n\ |
57025 | 151 |
\ A {0} separated list of modules to add to JImage creation,\n\ |
57071 | 152 |
\ including possible services\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
153 |
\ --limit-modules <module list>\n\ |
57071 | 154 |
\ A {0} separated list of Modules to limit JImage creation to\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
155 |
|
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
156 |
MSG_Help_mac=\nThe following options are valid for Mac OS X platforms:\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
157 |
\ --mac-sign\n\ |
57071 | 158 |
\ Request that the bundle be signed\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
159 |
\ --mac-bundle-name <name string>\n\ |
57071 | 160 |
\ Name of the application as it appears in the Menu Bar\n\ |
161 |
\ This can be different from the application name.\n\ |
|
162 |
\ This name must be less than 16 characters long and be suitable for\n\ |
|
163 |
\ displaying in the menu bar and the application Info window.\n\ |
|
164 |
\ Defaults to the application name.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
165 |
\ --mac-bundle-identifier <ID string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
166 |
\ An identifier that uniquely identifies the application for MacOSX\n\ |
57071 | 167 |
\ (and on the Mac App Store)\n\ |
168 |
\ May only use alphanumeric (A-Z,a-z,0-9), hyphen (-),\n\ |
|
169 |
\ and period (.) characters.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
170 |
\ --mac-app-store-category <category string>\n\ |
57071 | 171 |
\ Mac App Store Categories\n\ |
172 |
\ Note that the key is the string shown to\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
173 |
\ the user and the value is the ID of the category.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
174 |
\ --mac-app-store-entitlements <file path>\n\ |
57071 | 175 |
\ File location of a custom mac app store entitlements file\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
176 |
\ --mac-bundle-signing-prefix <prefix string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
177 |
\ When signing the application bundle, this value is prefixed to all\n\ |
57071 | 178 |
\ components that need to be signed that don't have\n\ |
179 |
\ an existing bundle identifier.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
180 |
\ --mac-signing-key-user-name <user name>\n\ |
57071 | 181 |
\ User name portion of the typical\n\ |
182 |
\ "Mac Developer ID Application: <user name>" signing key\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
183 |
\ --mac-signing-keychain <file path>\n\ |
57071 | 184 |
\ Location of the keychain to use\n\ |
185 |
\ If not specified, the standard keychains are used.\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
186 |
|
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
187 |
MSG_Help_linux=\nThe following options are valid for Linux platforms:\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
188 |
\ --linux-bundle-name <bundle name>\n\ |
57071 | 189 |
\ Name for Linux bundle, defaults to the application name\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
190 |
\ --linux-package-deps\n\ |
57071 | 191 |
\ Required packages or capabilities for the application\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
192 |
\ --linux-rpm-license-type <type string>\n\ |
57071 | 193 |
\ Type of the license ("License: <value>" of the RPM .spec)\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
194 |
\ --linux-deb-maintainer <email address>\n\ |
57071 | 195 |
\ Maintainer for .deb bundle\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
196 |
|
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
197 |
MSG_Help_win=\nThe following options are valid for Windows platforms:\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
198 |
\ --win-menu\n\ |
57071 | 199 |
\ Adds the application to the system menu\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
200 |
\ --win-menu-group <menu group name>\n\ |
57071 | 201 |
\ Start Menu group this application is placed in\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
202 |
\ --win-per-user-install\n\ |
57071 | 203 |
\ Request to perform an install on a per-user basis\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
204 |
\ --win-dir-chooser\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
205 |
\ Adds a dialog to enable the user to choose a directory in which\n\ |
57071 | 206 |
\ the product is installed\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
207 |
\ --win-registry-name <registry name>\n\ |
57071 | 208 |
\ Name of the application for registry references.\n\ |
209 |
\ The default is the Application Name with only\n\ |
|
210 |
\ alphanumerics, dots, and dashes (no whitespace)\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
211 |
\ --win-upgrade-uuid <id string>\n\ |
57071 | 212 |
\ UUID associated with upgrades for this package\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
213 |
\ --win-shortcut\n\ |
57071 | 214 |
\ Creates a desktop shortcut for the application\n\ |
56957
2f01969ed7cb
8211299: Output of System.out is not printed to CMD on Windows
herrick
parents:
56941
diff
changeset
|
215 |
\ --win-console\n\ |
57071 | 216 |
\ Creates a console launcher for the application, should be\n\ |
217 |
\ specified for application which requires console interactions\n\ |
|
57022
81021f910bc2
8213333: Fix issues found in jpackager with automated tests
herrick
parents:
57021
diff
changeset
|
218 |
|
57039 | 219 |
MSG_Help_no_args=Usage: jpackage <mode> <options>\n\ |
57071 | 220 |
\Use jpackage --help (or -h) for a list of possible options\ |
221 |