src/jdk.packager/share/classes/jdk/packager/internal/resources/CLIHelp.properties
author herrick
Thu, 11 Oct 2018 20:48:26 -0400
branchJDK-8200758-branch
changeset 56957 2f01969ed7cb
parent 56941 20568f1e1aa7
child 56982 e094d5483bd6
permissions -rw-r--r--
8211299: Output of System.out is not printed to CMD on Windows Submitten-by: almatvee Reviewed-by: herrick, kcr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
56821
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
     1
MSG_Help_common=Usage: jpackager <mode> <options>\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
     2
\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
     3
where mode is one of: \n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
     4
\  create-image\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
     5
\          Generates a platform-specific application image.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
     6
\  create-installer <type>\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
     7
\          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
     8
\          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
     9
\                           "pkg", and "pkg-app-store".\n\
20568f1e1aa7 JDK-8211282: Support creation of 'exe' installers on Windows.
herrick
parents: 56933
diff changeset
    10
\          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
    11
\          for current platform will be generated.\n\
56821
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    12
\  create-jre-installer <type>\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    13
\          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
    14
\          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
    15
\                           and "pkg".\n\
56821
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    16
\          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
    17
\          for current platform will be generated.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    18
\          \n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    19
Sample usages:\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    20
--------------\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    21
jpackager create-image --input inputdir --output outputdir --name AppName --class package.ClassName\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    22
or\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    23
jpackager create-image -i inputdir -o outputdir -n AppName -c package.ClassName\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    24
Generates an application image.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    25
\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    26
jpackager create-installer -i inputdir -o outputdir -n "App Name" -c package.ClassName\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    27
Generates an application installer.\n\
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
jpackager create-jre-installer -n <jre_name> -o outputdir\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    30
Generates a Server JRE installer.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    31
\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    32
The following options are valid for all platforms:\n\
56933
9f59eeb3cc0f 8211182: Remove jdk.packager.services.UserJvmOptionsService
herrick
parents: 56853
diff changeset
    33
\  --help -i \n\
9f59eeb3cc0f 8211182: Remove jdk.packager.services.UserJvmOptionsService
herrick
parents: 56853
diff changeset
    34
\          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
    35
\          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
    36
\          When this option is used, all other options are ignored.\n\
56821
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    37
\  --output -o\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    38
\          Name of the directory where generated output file is placed.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    39
\  --input -i\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    40
\          Name of the base directory that contains the files to package.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    41
\  --files -f\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    42
\          List of files in the base directory. If omitted, all files from "input"\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    43
\          directory (which is a mandatory argument in this case) will be packaged.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    44
\  --name -n\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    45
\          Name of the application.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    46
\  --main-jar -j\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    47
\          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
    48
\          and is relative to the assembled application directory.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    49
\  --class -c\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    50
\          Qualified name of the application class to execute.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    51
\  --version -v\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    52
\          Version of the application.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    53
\  --arguments -a\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    54
\          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
    55
\          are specified by the launcher.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    56
\  --icon\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    57
\          Icon of the application bundle.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    58
\  --singleton\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    59
\          Prevents multiple instances of the application from launching\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    60
\          (see SingleInstanceService API for more details).\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    61
\  --identifier\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    62
\          Machine readable identifier of the application. The format\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    63
\          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
    64
\          The identifier is used for composing Single Instance unique id and\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    65
\          calculating preferences node to search for User JVM Options\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    66
\          (the format is a slash delimited version of the main package name,\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    67
\          such as "com/example/myapplication"), see UserJvmOptionsService API\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    68
\          for more details.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    69
\  --verbose\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    70
\          Enables verbose output.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    71
\  --strip-native-commands\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    72
\          Removes native executables from the custom run-time images.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    73
\  --jvm-args\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    74
\          JVM flags and options to pass to the application.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    75
\  --file-associations\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    76
\          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
    77
\          describe a file association. "extension", "mime-type", "icon",\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    78
\          "description" can be used as keys for the association.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    79
\  --secondary-launcher\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    80
\          Properties file that contains a collection of options for a secondary launcher.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    81
\  --build-root\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    82
\          Directory in which to use and place temporary files.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    83
\  --runtime-image\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    84
\          Location of the predefined runtime image that is used to build\n\
56853
06c322468f90 8209195: Packager help content missing
herrick
parents: 56821
diff changeset
    85
\          an application image and installable package.\n\
56821
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    86
\  --app-image\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    87
\          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
    88
\          an installable package.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    89
\  --install-dir\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    90
\          Installation directory of the application. Ignored on Windows, use\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    91
\          \u2013-win-dir-chooser to provide an ability to choose an installation directory.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    92
\  --echo-mode\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    93
\          Outputs (without executing) native packaging commands so that users\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    94
\          can use this as a starting point for addressing more complex needs.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    95
\  --license-file\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    96
\          The license file, relative to the base directory.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    97
\  --copyright\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    98
\          Copyright for the application.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
    99
\  --description\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   100
\          Description of the application.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   101
\  --category\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   102
\          Category or group of the application.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   103
\  --vendor\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   104
\          Vendor of the application.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   105
\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   106
Modular options:\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   107
\  --module -m\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   108
\          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
   109
\          and be on the module path.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   110
\  --module-path -p\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   111
\          When packaging the Java Runtime, this is the path JLink looks in for modules.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   112
\  --add-modules\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   113
\          List of modules to add to JImage creation, including possible services.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   114
\  --limit-modules\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   115
\          Modules to limit JImage creation to.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   116
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   117
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
   118
\  --mac-sign\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   119
\          Request that the bundle be signed.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   120
\  --mac-bundle-name\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   121
\          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
   122
\          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
   123
\          characters long and be suitable for displaying in the menu bar and\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   124
\          the application Info window.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   125
\  --mac-bundle-identifier\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   126
\          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
   127
\          (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
   128
\          hyphen (-), and period (.) characters.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   129
\  --mac-app-store-category\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   130
\          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
   131
\          the user and the value is the ID of the category.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   132
\  --mac-app-store-entitlements\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   133
\          File location of a custom mac app store entitlements file.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   134
\  --mac-bundle-signing-prefix\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   135
\          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
   136
\          components that need to be signed that don't have an existing bundle identifier.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   137
\  --mac-signing-key-user-name\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   138
\          User name portion of the typical "Mac Developer ID Application: <user name>" signing key.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   139
\  --mac-signing-keychain\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   140
\          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
   141
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   142
MSG_Help_linux=\nThe following options are valid for Linux platforms:\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   143
\  --linux-bundle-name\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   144
\          Name for Linux bundle.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   145
\  --linux-package-deps\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   146
\          Required packages or capabilities for the application.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   147
\  --linux-rpm-license-type\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   148
\          Type of the license ("License: <value>" of the RPM .spec).\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   149
\  --linux-deb-maintainer\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   150
\          Maintainer for .deb bundle.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   151
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   152
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
   153
\  --win-menu\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   154
\          Adds the application to the system menu.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   155
\  --win-menu-group\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   156
\          Start Menu group this application is placed in.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   157
\  --win-per-user-install\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   158
\          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
   159
\  --win-dir-chooser\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   160
\          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
   161
\          the product is installed.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   162
\  --win-registry-name\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   163
\          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
   164
\          the Application Name with only alphanumerics, dots, and dashes (no whitespace).\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   165
\  --win-upgrade-uuid\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   166
\          UUID associated with upgrades for this package.\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   167
\  --win-shortcut\n\
565d54ca1f41 8206005: Move prototype jpackager from closed sandbox to open sandbox
herrick
parents:
diff changeset
   168
\          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
   169
\  --win-console\n\
2f01969ed7cb 8211299: Output of System.out is not printed to CMD on Windows
herrick
parents: 56941
diff changeset
   170
\          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
   171
\          application which requires console interactions.\n\