author | herrick |
Thu, 06 Jun 2019 19:18:09 -0400 | |
branch | JDK-8200758-branch |
changeset 57392 | 46d4b0aa4542 |
parent 57330 | a30edd277572 |
child 57394 | 17c43babfc2f |
permissions | -rw-r--r-- |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
1 |
# |
57106
ea870b9ce89a
8216492: Update copyright of all new jpackage fils to 2019
kcr
parents:
57099
diff
changeset
|
2 |
# Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. |
56982
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 |
|
57257 | 27 |
MSG_Help=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\ |
57306
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
30 |
\ create-app-image\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
31 |
\ Generates a platform-specific application image.\n\ |
57150 | 32 |
\ create-installer\n\ |
56821
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\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
34 |
\ \n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
35 |
Sample usages:\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
36 |
--------------\n\ |
57328
b33e5f36b59b
8222486: Reorder sample usage in jpackage help output
herrick
parents:
57323
diff
changeset
|
37 |
\ Generate a non-modular application image:\n\ |
b33e5f36b59b
8222486: Reorder sample usage in jpackage help output
herrick
parents:
57323
diff
changeset
|
38 |
\ jpackage create-app-image -o outputdir -i inputdir -n name \\\n\ |
b33e5f36b59b
8222486: Reorder sample usage in jpackage help output
herrick
parents:
57323
diff
changeset
|
39 |
\ --main-class className --main-jar MyJar.jar\n\ |
57150 | 40 |
\ Generate a modular application image:\n\ |
57306
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
41 |
\ jpackage create-app-image -o outputdir -n name \\\n\ |
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
42 |
\ -p modulePath -m moduleName/className\n\ |
57257 | 43 |
\ To provide your own options to jlink, run jlink separately:\n\ |
57306
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
44 |
\ jlink --output appRuntimeImage -p ModulePath -m moduleName\\\n\ |
57257 | 45 |
\ --no-header-files [<additional jlink options>...]\n\ |
57306
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
46 |
\ jpackage create-app-image -o outputdir -n name\\\n\ |
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
47 |
\ -m moduleName/className --runtime-image appRuntimeIMage\n\ |
57071 | 48 |
\ Generate an application installer:\n\ |
57257 | 49 |
\ jpackage create-installer -o outputdir -n name \\\n\ |
57306
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
50 |
\ -p modulePath -m moduleName/className\n\ |
57257 | 51 |
\ jpackage create-installer -i inputdir -o outputdir -n name \\\n\ |
52 |
\ --main-class package.ClassName --main-jar MyJar.jar\n\ |
|
53 |
\ jpackage create-installer -o outputdir -n <installer-name> \\\n\ |
|
54 |
\ --app-image <app image dir> [--installer-type <type>]\n\ |
|
57150 | 55 |
\ Generate a Java runtime installer:\n\ |
57257 | 56 |
\ jpackage create-installer -o outputdir -n name \\\n\ |
57 |
\ --runtime-image <runtime-image>\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
58 |
\n\ |
57257 | 59 |
Generic Options:\n\ |
57060 | 60 |
\ @<filename> \n\ |
57276
eac9018748b3
8220804: Help message for @ argfile option is printed in the wrong place
herrick
parents:
57261
diff
changeset
|
61 |
\ Read options and/or mode from a file \n\ |
57330
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
62 |
\ This option can be used multiple times.\n\ |
57257 | 63 |
\ --app-version <version>\n\ |
64 |
\ Version of the application and/or installer\n\ |
|
65 |
\ --copyright <copyright string>\n\ |
|
66 |
\ Copyright for the application\n\ |
|
67 |
\ --description <description string>\n\ |
|
68 |
\ Description of the application\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
69 |
\ --help -h \n\ |
57071 | 70 |
\ Print the usage text with a list and description of each valid\n\ |
71 |
\ option for the current platform to the output stream, and exit\n\ |
|
57257 | 72 |
\ --name -n <name>\n\ |
73 |
\ Name of the application and/or installer\n\ |
|
57078
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
74 |
\ --output -o <output path>\n\ |
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
75 |
\ Path where generated output file is placed\n\ |
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
76 |
\ (absolute path or relative to the current directory)\n\ |
57257 | 77 |
\ --temp-root <file path>\n\ |
78 |
\ Path of a new or empty directory used to create temporary files\n\ |
|
57078
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
79 |
\ (absolute path or relative to the current directory)\n\ |
57257 | 80 |
\ If specified, the temp-root will not be removed upon the task\n\ |
81 |
\ completion and must be removed manually\n\ |
|
82 |
\ If not specified, a temporary directory will be created and\n\ |
|
83 |
\ removed upon the task completion.\n\ |
|
84 |
\ --vendor <vendor string>\n\ |
|
85 |
\ Vendor of the application\n\ |
|
86 |
\ --verbose\n\ |
|
87 |
\ Enables verbose output\n\ |
|
57261
13b6672477df
8220505: Allow building available installers when --installer-type not specified
herrick
parents:
57257
diff
changeset
|
88 |
\ --version\n\ |
57257 | 89 |
\ Print the product version to the output stream and exit\n\ |
90 |
\n\ |
|
91 |
\Options for creating the runtime image:\n\ |
|
92 |
\ --add-modules <module name>[,<module name>...]\n\ |
|
93 |
\ A comma (",") separated list of modules to add.\n\ |
|
94 |
\ This module list, along with the main module (if specified)\n\ |
|
95 |
\ will be passed to jlink as the --add-module argument.\n\ |
|
96 |
\ if not specified, either just the main module (if --module is\n\ |
|
97 |
\ specified), or the default set of modules (if --main-jar is \n\ |
|
98 |
\ specified) are used.\n\ |
|
57330
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
99 |
\ This option can be used multiple times.\n\ |
57257 | 100 |
\ --module-path -p <module path>...\n\ |
101 |
\ A {0} separated list of paths\n\ |
|
102 |
\ Each path is either a directory of modules or the path to a\n\ |
|
103 |
\ modular jar.\n\ |
|
104 |
\ (each path is absolute or relative to the current directory)\n\ |
|
57330
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
105 |
\ This option can be used multiple times.\n\ |
57257 | 106 |
\ --runtime-image <file path>\n\ |
107 |
\ Path of the predefined runtime image that will be copied into\n\ |
|
108 |
\ the application image\n\ |
|
109 |
\ (absolute path or relative to the current directory)\n\ |
|
110 |
\ If --runtime-image is not specified, jpackage will run jlink to\n\ |
|
111 |
\ create the runtime image using options:\n\ |
|
112 |
\ --strip-debug, --no-header-files, --no-man-pages, and\n\ |
|
113 |
\ --strip-native-commands. --bind-services will also be added if\n\ |
|
114 |
\ --add-modules is not specified.\n\ |
|
115 |
\n\ |
|
116 |
\Options for creating the application image:\n\ |
|
57078
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
117 |
\ --icon <icon file path>\n\ |
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
118 |
\ Path of the icon of the application bundle\n\ |
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
119 |
\ (absolute path or relative to the current directory)\n\ |
57257 | 120 |
\ --input -i <input path>\n\ |
121 |
\ Path of the input directory that contains the files to be packaged\n\ |
|
122 |
\ (absolute path or relative to the current directory)\n\ |
|
57306
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
123 |
\ All files in the input directory will be packaged into the\n\ |
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
124 |
\ application image.\n\ |
57257 | 125 |
\n\ |
126 |
\Options for creating the application launcher(s):\n\ |
|
57330
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
127 |
\ --add-launcher <launcher name>=<file path>\n\ |
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
128 |
\ Name of launcher, and a path to a Properties file that contains\n\ |
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
129 |
\ a list of key, value pairs\n\ |
57257 | 130 |
\ (absolute path or relative to the current directory)\n\ |
57330
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
131 |
\ The keys "module", "add-modules", "main-jar", "main-class",\n\ |
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
132 |
\ "arguments", "java-options", "app-version", "icon", and\n\ |
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
133 |
\ "win-console" can be used.\n\ |
57257 | 134 |
\ These options are added to, or used to overwrite, the original\n\ |
57306
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
135 |
\ command line options to build an additional alternative launcher.\n\ |
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
136 |
\ The main application launcher will be built from the command line\n\ |
57330
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
137 |
\ options. Additional alternative launchers can be built using\n\ |
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
138 |
\ this option, and this option can be used multiple times to\n\ |
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
139 |
\ build multiple additional launchers. \n\ |
57257 | 140 |
\ --arguments <main class arguments>\n\ |
141 |
\ Command line arguments to pass to the main class if no command\n\ |
|
142 |
\ line arguments are given to the launcher\n\ |
|
57330
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
143 |
\ This option can be used multiple times.\n\ |
57291 | 144 |
\ --java-options <java options>\n\ |
145 |
\ Options to pass to the Java runtime\n\ |
|
57330
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
146 |
\ This option can be used multiple times.\n\ |
57257 | 147 |
\ --main-class <class name>\n\ |
148 |
\ Qualified name of the application main class to execute\n\ |
|
149 |
\ This option can only be used if --main-jar is specified.\n\ |
|
150 |
\ --main-jar <main jar file>\n\ |
|
151 |
\ The main JAR of the application; containing the main class\n\ |
|
152 |
\ (specified as a path relative to the input path)\n\ |
|
153 |
\ Either --module or --main-jar option can be specified but not\n\ |
|
154 |
\ both.\n\ |
|
155 |
\ --module -m <module name>[/<main class>]\n\ |
|
156 |
\ The main module (and optionally main class) of the application\n\ |
|
157 |
\ This module must be located on the module path.\n\ |
|
158 |
\ When this option is specified, the main module will be linked\n\ |
|
159 |
\ in the Java runtime image. Either --module or --main-jar\n\ |
|
160 |
\ option can be specified but not both.\n\ |
|
161 |
{2}\n\ |
|
162 |
\Options for creating the application installer(s):\n\ |
|
163 |
\ --app-image <file path>\n\ |
|
164 |
\ Location of the predefined application image that is used\n\ |
|
165 |
\ to build an installable package\n\ |
|
166 |
\ (absolute path or relative to the current directory)\n\ |
|
57306
b3b59183df78
8221779: Help text changes from JDK-8221777 and other jpackage EA5 feedback
herrick
parents:
57291
diff
changeset
|
167 |
\ See create-app-image mode options to create the application image.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
168 |
\ --file-associations <file path>\n\ |
57078
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
169 |
\ Path to a Properties file that contains list of key, value pairs\n\ |
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
170 |
\ (absolute path or relative to the current directory)\n\ |
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
171 |
\ The keys "extension", "mime-type", "icon", and "description"\n\ |
db003bfc5bf7
JDK-8215453: remove unused BundlerParams and fix misleading messages
herrick
parents:
57071
diff
changeset
|
172 |
\ can be used to describe the association.\n\ |
57330
a30edd277572
8222733: Modify jpackage option --add-launcher synta
herrick
parents:
57328
diff
changeset
|
173 |
\ This option can be used multiple times.\n\ |
57257 | 174 |
\ --identifier <id string>\n\ |
57323 | 175 |
\ An identifier that uniquely identifies the application\n\ |
176 |
\ Defaults to the main class name.\n\ |
|
177 |
\ The value should be a valid DNS name.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
178 |
\ --install-dir <file path>\n\ |
57283 | 179 |
\ {4}\ |
57257 | 180 |
\ --installer-type <type> \n\ |
181 |
\ The type of the installer to create\n\ |
|
182 |
\ Valid values are: {1} \n\ |
|
183 |
\ If this option is not specified (in create-installer mode) all\n\ |
|
184 |
\ supported types of installable packages for the current\n\ |
|
185 |
\ platform will be created.\n\ |
|
57080 | 186 |
\ --license-file <file path>\n\ |
187 |
\ Path to the license file\n\ |
|
188 |
\ (absolute path or relative to the current directory)\n\ |
|
57091
06bc4bd64599
8215515: Add a command line option to override internal resources.
herrick
parents:
57080
diff
changeset
|
189 |
\ --resource-dir <path>\n\ |
06bc4bd64599
8215515: Add a command line option to override internal resources.
herrick
parents:
57080
diff
changeset
|
190 |
\ Path to override jpackage resources\n\ |
06bc4bd64599
8215515: Add a command line option to override internal resources.
herrick
parents:
57080
diff
changeset
|
191 |
\ Icons, template files, and other resources of jpackage can be\n\ |
06bc4bd64599
8215515: Add a command line option to override internal resources.
herrick
parents:
57080
diff
changeset
|
192 |
\ over-ridden by adding replacement resources to this directory.\n\ |
06bc4bd64599
8215515: Add a command line option to override internal resources.
herrick
parents:
57080
diff
changeset
|
193 |
\ (absolute path or relative to the current directory)\n\ |
57257 | 194 |
\ --runtime-image <file-path>\n\ |
195 |
\ Path of the predefined runtime image to install\n\ |
|
196 |
\ (absolute path or relative to the current directory)\n\ |
|
197 |
\ Option is required when creating a runtime installer.\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
198 |
\n\ |
57257 | 199 |
\Platform dependent options for creating the application installer(s):\n\ |
200 |
{3} |
|
201 |
||
202 |
MSG_Help_win_launcher=\ |
|
203 |
\n\ |
|
204 |
\Platform dependent option for creating the application launcher:\n\ |
|
205 |
\ --win-console\n\ |
|
206 |
\ Creates a console launcher for the application, should be\n\ |
|
207 |
\ specified for application which requires console interactions\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
208 |
|
57257 | 209 |
MSG_Help_win_install=\ |
210 |
\ --win-dir-chooser\n\ |
|
211 |
\ Adds a dialog to enable the user to choose a directory in which\n\ |
|
212 |
\ the product is installed\n\ |
|
213 |
\ --win-menu\n\ |
|
214 |
\ Adds the application to the system menu\n\ |
|
215 |
\ --win-menu-group <menu group name>\n\ |
|
216 |
\ Start Menu group this application is placed in\n\ |
|
217 |
\ --win-per-user-install\n\ |
|
218 |
\ Request to perform an install on a per-user basis\n\ |
|
219 |
\ --win-registry-name <registry name>\n\ |
|
220 |
\ Name of the application for registry references.\n\ |
|
221 |
\ The default is the Application Name with only\n\ |
|
222 |
\ alphanumerics, dots, and dashes (no whitespace)\n\ |
|
223 |
\ --win-shortcut\n\ |
|
224 |
\ Creates a desktop shortcut for the application\n\ |
|
225 |
\ --win-upgrade-uuid <id string>\n\ |
|
226 |
\ UUID associated with upgrades for this package\n\ |
|
227 |
||
57283 | 228 |
MSG_Help_win_install_dir=\ |
229 |
\Relative sub-path under the default installation location\n\ |
|
230 |
||
57286
2ee6dedec44f
8221256: Fix create-installer specific options on MAC
herrick
parents:
57283
diff
changeset
|
231 |
MSG_Help_mac_launcher=\ |
57257 | 232 |
\ --mac-bundle-identifier <ID string>\n\ |
233 |
\ An identifier that uniquely identifies the application for MacOSX\n\ |
|
57323 | 234 |
\ Defaults to the value of --identifier option.\n\ |
57257 | 235 |
\ May only use alphanumeric (A-Z,a-z,0-9), hyphen (-),\n\ |
236 |
\ and period (.) characters.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
237 |
\ --mac-bundle-name <name string>\n\ |
57071 | 238 |
\ Name of the application as it appears in the Menu Bar\n\ |
239 |
\ This can be different from the application name.\n\ |
|
240 |
\ This name must be less than 16 characters long and be suitable for\n\ |
|
241 |
\ displaying in the menu bar and the application Info window.\n\ |
|
242 |
\ Defaults to the application name.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
243 |
\ --mac-bundle-signing-prefix <prefix string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
244 |
\ When signing the application bundle, this value is prefixed to all\n\ |
57071 | 245 |
\ components that need to be signed that don't have\n\ |
246 |
\ an existing bundle identifier.\n\ |
|
57257 | 247 |
\ --mac-sign\n\ |
248 |
\ 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
|
249 |
\ --mac-signing-keychain <file path>\n\ |
57392 | 250 |
\ Path of the keychain to search for the signing identity\n\ |
251 |
\ (absolute path or relative to the current directory).\n\ |
|
57071 | 252 |
\ If not specified, the standard keychains are used.\n\ |
57392 | 253 |
\ --mac-signing-key-user-name <team name>\n\ |
254 |
\ Team name portion in Apple signing identities' names.\n\ |
|
255 |
\ For example "Developer ID Application: "\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
256 |
|
57257 | 257 |
MSG_Help_linux_install=\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
258 |
\ --linux-bundle-name <bundle name>\n\ |
57071 | 259 |
\ Name for Linux bundle, defaults to the application name\n\ |
57257 | 260 |
\ --linux-deb-maintainer <email address>\n\ |
261 |
\ Maintainer for .deb bundle\n\ |
|
262 |
\ --linux-menu-group <menu-group-name>\n\ |
|
263 |
\ Menu group this application is placed in\n\ |
|
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
264 |
\ --linux-package-deps\n\ |
57071 | 265 |
\ 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
|
266 |
\ --linux-rpm-license-type <type string>\n\ |
57071 | 267 |
\ Type of the license ("License: <value>" of the RPM .spec)\n\ |
57022
81021f910bc2
8213333: Fix issues found in jpackager with automated tests
herrick
parents:
57021
diff
changeset
|
268 |
|
57283 | 269 |
MSG_Help_mac_linux_install_dir=\ |
270 |
\Absolute path of the installation directory of the application\n\ |
|
271 |
||
272 |
MSG_Help_default_install_dir=\ |
|
273 |
\Absolute path of the installation directory of the application on OS X\n\ |
|
274 |
\ or Linux. Relative sub-path of the installation location of the application\n\ |
|
275 |
\ such as "Program Files" or "AppData" on Windows.\n\ |
|
276 |
||
57039 | 277 |
MSG_Help_no_args=Usage: jpackage <mode> <options>\n\ |
57071 | 278 |
\Use jpackage --help (or -h) for a list of possible options\ |
279 |