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