author | herrick |
Wed, 05 Dec 2018 17:03:58 -0500 | |
branch | JDK-8200758-branch |
changeset 57060 | 5103d6d2e796 |
parent 57059 | 9bb2a4dc3af7 |
child 57071 | 94e9270166f0 |
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\ |
20568f1e1aa7
JDK-8211282: Support creation of 'exe' installers on Windows.
herrick
parents:
56933
diff
changeset
|
36 |
\ If "type" is omitted, all supported types of installable packages\n\ |
20568f1e1aa7
JDK-8211282: Support creation of 'exe' installers on Windows.
herrick
parents:
56933
diff
changeset
|
37 |
\ for 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\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
39 |
\ Generates a platform-specific installer for Server 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\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
42 |
\ If "type" is omitted, all supported types of installable packages\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
43 |
\ for current platform will be generated.\n\ |
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\ |
57039 | 47 |
jpackage create-image --input inputdir --output outputdir --name AppName --class package.ClassName --main-jar AppName.jar\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
48 |
or\n\ |
57039 | 49 |
jpackage create-image -o outputdir -n AppName -c package.ClassName -m moduleName -p modulePath\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
50 |
Generates an application image.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
51 |
\n\ |
57039 | 52 |
jpackage create-installer -i inputdir -o outputdir -n "App Name" -c package.ClassName\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
53 |
Generates an application installer.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
54 |
\n\ |
57039 | 55 |
jpackage create-jre-installer -n <jre_name> -o outputdir\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
56 |
Generates a Server JRE installer.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
57 |
\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
58 |
The following options are valid for all platforms:\n\ |
57060 | 59 |
\ @<filename> \n\ |
60 |
\ read options and mode from file. \n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
61 |
\ --help -h \n\ |
56933
9f59eeb3cc0f
8211182: Remove jdk.packager.services.UserJvmOptionsService
herrick
parents:
56853
diff
changeset
|
62 |
\ Shows the usage text, followed by a list and description of each valid option for the current platform and the given mode.\n\ |
9f59eeb3cc0f
8211182: Remove jdk.packager.services.UserJvmOptionsService
herrick
parents:
56853
diff
changeset
|
63 |
\ If no mode is given, shows the usage text, followed by a list and description of each valid option for the current platform.\n\ |
9f59eeb3cc0f
8211182: Remove jdk.packager.services.UserJvmOptionsService
herrick
parents:
56853
diff
changeset
|
64 |
\ When this option is used, all other options are ignored.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
65 |
\ --output -o <output dir>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
66 |
\ 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
|
67 |
\ --input -i <input dir>\n\ |
57025 | 68 |
\ 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
|
69 |
\ --files -f <input files>\n\ |
57025 | 70 |
\ A {0} separated list of files in the input directory to be packaged.\n\ |
71 |
\ 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
|
72 |
\ --name -n <application name>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
73 |
\ Name of the application.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
74 |
\ --main-jar -j <main jar name>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
75 |
\ The main JAR of the application. This JAR should have the main-class,\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
76 |
\ and is relative to the assembled application directory.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
77 |
\ --class -c <class name>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
78 |
\ Qualified name of the application class to execute.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
79 |
\ --version -v <version string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
80 |
\ Version of the application.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
81 |
\ --arguments -a <main class arguments>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
82 |
\ Command line arguments to pass to the main class if no arguments\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
83 |
\ are specified by the launcher.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
84 |
\ --icon <icon file name>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
85 |
\ Icon of the application bundle.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
86 |
\ --singleton\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
87 |
\ Prevents multiple instances of the application from launching\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
88 |
\ (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
|
89 |
\ --identifier <id string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
90 |
\ Machine readable identifier of the application. The format\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
91 |
\ must be a DNS name in reverse order, such as com.example.myapplication.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
92 |
\ --verbose\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
93 |
\ Enables verbose output.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
94 |
\ --strip-native-commands\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
95 |
\ 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
|
96 |
\ --jvm-args <java vm arguments>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
97 |
\ 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
|
98 |
\ --file-associations <file path>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
99 |
\ Properties file that contains list of key=value parameters that\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
100 |
\ describe a file association. "extension", "mime-type", "icon",\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
101 |
\ "description" 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
|
102 |
\ --secondary-launcher <file path>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
103 |
\ Properties file that contains a collection of options for a secondary launcher.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
104 |
\ --build-root <file path>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
105 |
\ 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
|
106 |
\ --runtime-image <file path>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
107 |
\ Location of the predefined runtime image that is used to build\n\ |
56853 | 108 |
\ 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
|
109 |
\ --app-image <file path>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
110 |
\ Location of the predefined application image that is used to build\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
111 |
\ an installable package.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
112 |
\ --install-dir <file path>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
113 |
\ Installation directory of the application. Ignored on Windows, use\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
114 |
\ --win-dir-chooser to provide an ability to choose an installation directory.\n\ |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
115 |
\ --license-file <file name>\n\ |
57025 | 116 |
\ 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
|
117 |
\ --copyright <copyright string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
118 |
\ Copyright for the application.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
119 |
\ --description <description string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
120 |
\ Description of the application.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
121 |
\ --category <category string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
122 |
\ 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
|
123 |
\ --vendor <vendor string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
124 |
\ Vendor of the application.\n\ |
57021
441c020bf626
8213324:jpackager deletes existing app directory without warning
herrick
parents:
57017
diff
changeset
|
125 |
\ --force -- Allow the deletion of any existing output root directory when creating an Application image.\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
126 |
\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
127 |
Modular options:\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
128 |
\ --module -m <module name>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
129 |
\ Main module of the application. This module must have the main-class,\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
130 |
\ and be on the module path.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
131 |
\ --module-path -p <module path>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
132 |
\ When packaging the Java Runtime, this is the path JLink looks in for modules.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
133 |
\ --add-modules <module list>\n\ |
57025 | 134 |
\ A {0} separated list of modules to add to JImage creation,\n\ |
135 |
\ including possible services.\n\ |
|
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
136 |
\ --limit-modules <module list>\n\ |
57025 | 137 |
\ 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
|
138 |
|
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
139 |
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
|
140 |
\ --mac-sign\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
141 |
\ 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
|
142 |
\ --mac-bundle-name <name string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
143 |
\ Name of the application as it appears in the Menu Bar. This can be\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
144 |
\ different from the application name. This name must be less than 16\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
145 |
\ characters long and be suitable for displaying in the menu bar and\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
146 |
\ the application Info window. Defaults to the application name.\n\ |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
147 |
\ --mac-bundle-identifier <ID string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
148 |
\ An identifier that uniquely identifies the application for MacOSX\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
149 |
\ (and on the Mac App Store). May only use alphanumeric (A-Z,a-z,0-9),\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
150 |
\ hyphen (-), and period (.) characters.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
151 |
\ --mac-app-store-category <category string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
152 |
\ Mac App Store Categories. Note that the key is the string shown to\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
153 |
\ 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
|
154 |
\ --mac-app-store-entitlements <file path>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
155 |
\ 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
|
156 |
\ --mac-bundle-signing-prefix <prefix string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
157 |
\ When signing the application bundle, this value is prefixed to all\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
158 |
\ components that need to be signed that don't have an existing bundle identifier.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
159 |
\ --mac-signing-key-user-name <user name>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
160 |
\ User name portion of the typical "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
|
161 |
\ --mac-signing-keychain <file path>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
162 |
\ Location of the keychain to use. If not specified, the standard keychains are used.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
163 |
|
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
164 |
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
|
165 |
\ --linux-bundle-name <bundle name>\n\ |
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
166 |
\ 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
|
167 |
\ --linux-package-deps\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
168 |
\ 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
|
169 |
\ --linux-rpm-license-type <type string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
170 |
\ 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
|
171 |
\ --linux-deb-maintainer <email address>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
172 |
\ Maintainer for .deb bundle.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
173 |
|
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
174 |
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
|
175 |
\ --win-menu\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
176 |
\ 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
|
177 |
\ --win-menu-group <menu group name>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
178 |
\ Start Menu group this application is placed in.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
179 |
\ --win-per-user-install\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
180 |
\ Request to perform an install on a per-user basis.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
181 |
\ --win-dir-chooser\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
182 |
\ Adds a dialog to enable the user to choose a directory in which\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
183 |
\ the product is installed.\n\ |
56982
e094d5483bd6
8212048: Cleanup source code and fix issues discussed in preliminary review
herrick
parents:
56957
diff
changeset
|
184 |
\ --win-registry-name <registry name>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
185 |
\ Name of the application for registry references. Default is\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
186 |
\ the Application Name with only 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
|
187 |
\ --win-upgrade-uuid <id string>\n\ |
56821
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
188 |
\ UUID associated with upgrades for this package.\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
189 |
\ --win-shortcut\n\ |
565d54ca1f41
8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff
changeset
|
190 |
\ 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
|
191 |
\ --win-console\n\ |
2f01969ed7cb
8211299: Output of System.out is not printed to CMD on Windows
herrick
parents:
56941
diff
changeset
|
192 |
\ Creates a console launcher for the application. Should be specified for\n\ |
2f01969ed7cb
8211299: Output of System.out is not printed to CMD on Windows
herrick
parents:
56941
diff
changeset
|
193 |
\ application which requires console interactions.\n\ |
57022
81021f910bc2
8213333: Fix issues found in jpackager with automated tests
herrick
parents:
57021
diff
changeset
|
194 |
|
57039 | 195 |
MSG_Help_no_args=Usage: jpackage <mode> <options>\n\ |
57022
81021f910bc2
8213333: Fix issues found in jpackager with automated tests
herrick
parents:
57021
diff
changeset
|
196 |
\Use --help for a list of possible options\ |