Name
jpackage - tool for packaging self-contained Java applications.
Synopsis
jpackage [options]
- options
- Command-line options separated by spaces. See jpackage Options.
Description
The jpackage tool will take as input a Java application and a Java run-time image, and produce a Java application image that includes all the necessary dependencies. It will be able to produce a native package in a platform-specific format, such as an exe on Windows or a dmg on macOS. Each format must be built on the platform it runs on, there is no cross-platform support. The tool will have options that allow packaged applications to be customized in various ways.
jpackage Options
Generic Options:
@filenameRead options from a file.
This option can be used multiple times.
--typeor-ttypeThe type of package to create
Valid values are: {"app-image", "exe", "msi", "rpm", "deb", "pkg", "dmg"}
If this option is not specified a platform dependent default type will be created.
--app-versionversionVersion of the application and/or package
--copyrightcopyrightCopyright for the application
--descriptiondescriptionDescription of the application
--helpor-hPrint the usage text with a list and description of each valid option for the current platform to the output stream, and exit.
--iconpathPath of the icon of the application package
(absolute path or relative to the current directory)
--nameor-nnameName of the application and/or package
--destor-ddestinationPath where generated output file is placed
(absolute path or relative to the current directory).
Defaults to the current working directory.
--resource-dirpathPath to override jpackage resources
(absolute path or relative to the current directory)
Icons, template files, and other resources of jpackage can be over-ridden by adding replacement resources to this directory.
--tempdirectoryPath of a new or empty directory used to create temporary files
(absolute path or relative to the current directory)
If specified, the temp dir will not be removed upon the task completion and must be removed manually.
If not specified, a temporary directory will be created and removed upon the task completion.
--vendorvendorVendor of the application
--verbose<[-]key(,[-]key)*>Configures verbose output. Enables and/or disables log message categories using zero or more of the keys described below separated by commas. The key
allenables or disables all categories (respectively); other keys enable the corresponding category, or disable it if preceded by a hyphen (-).Supported values for key are:
all: Enables console output and routing of all message categories to the logging framework through the System.Logger API. Equivalent toconsole,log.console: Enables console output of all message categories. Equivalent toall,-log.errors: Enables output of fatal errors. If the key is specified without thetracekey, error messages will be written to the console without the corresponding exception stacktraces. If the key is specified with thetracekey, error messages will be written to the console with the corresponding exception stacktraces.progress: Enables output of progress messages.resources: Enables output of messages about the use of the configurable resources.summary: Enables output of the bundle properties and the versions of the tools being used.tools: Enables output of commands being executed. If the key is specified without thetracekey, the jpackage will print the command lines without the output produced by executing these command lines. Only command lines that are relevant to package customization will be written to the console. If the key is specified with thetracekey, the jpackage will print all command lines and their output.trace: Enables output of stack traces of suppressed exceptions and details of the jpackage execution. When combined with other keys, it enables additional information in messages from the corresponding message categories, as described above.warning: Enables output of warnings.log: Enables routing of all message categories to the logging framework through the System.Logger API. The logger name will be "jdk.jpackage".
If the option is specified without the value, it is equivalent to:
--verbose console,-traceIf the option is not specified, it is equivalent to:
--verbose errors,warningsSample usage:
Suppress all console output, enable logging via the System.Logger API:
--verbose logEnable all message categories in the console:
--verbose consoleEnable all message categories, but "trace" and "tools" in the console:
--verbose console,-trace,-toolsEnable "trace" and "tools" message categories in the console:
--verbose trace,toolsEnable "trace" and "tools" message categories in the console and enable logging via the System.Logger API:
--verbose log,trace,tools--versionPrint the product version to the output stream and exit.
Options for creating the runtime image:
--add-modulesmodule-name [,module-name...]A comma (",") separated list of modules to add
This module list, along with the main module (if specified) will be passed to jlink as the --add-module argument. If not specified, either just the main module (if --module is specified), or the default set of modules (if --main-jar is specified) are used.
This option can be used multiple times.
--module-pathor-pmodule-path [,module-path...]A File.pathSeparator separated list of paths
Each path is either a directory of modules or the path to a modular jar, and is absolute or relative to the current directory.
This option can be used multiple times.
--jlink-optionsoptionsA space separated list of options to pass to jlink
If not specified, defaults to "--strip-native-commands --strip-debug --no-man-pages --no-header-files"
This option can be used multiple times.
--runtime-imagedirectoryPath of the predefined runtime image that will be copied into the application image
(absolute path or relative to the current directory)
If --runtime-image is not specified, jpackage will run jlink to create the runtime image using options specified by --jlink-options.
Options for creating the application image:
--inputor-idirectoryPath of the input directory that contains the files to be packaged
(absolute path or relative to the current directory)
All files in the input directory will be packaged into the application image.
--app-contentadditional-content [,additional-content...]A comma separated list of paths to files and/or directories to add to the application payload.
This option can be used more than once.
macOS note: The value should be a directory with the "Resources" subdirectory (or any other directory that is valid in the "Contents" directory of the application bundle). Otherwise, jpackage may produce invalid application bundle which may fail code signing and/or notarization.
Options for creating the application launcher(s):
--add-launchername=pathName of launcher, and a path to a Properties file that contains a list of key, value pairs
(absolute path or relative to the current directory)
The keys "module", "main-jar", "main-class", "description", "arguments", "java-options", "icon", "launcher-as-service", "win-console", "win-shortcut", "win-menu", and "linux-shortcut" can be used.
These options are added to, or used to overwrite, the original command line options to build an additional alternative launcher. The main application launcher will be built from the command line options. Additional alternative launchers can be built using this option, and this option can be used multiple times to build multiple additional launchers.
--argumentsargumentsCommand line arguments to pass to the main class if no command line arguments are given to the launcher
This option can be used multiple times.
Value can contain substrings that will be expanded at runtime. Two types of such substrings are supported: environment variables and "APPDIR", "BINDIR", and "ROOTDIR" tokens.
An expandable substring should be enclosed between the dollar sign character ($) and the first following non-alphanumeric character. Alternatively, it can be enclosed between "${" and "}" substrings.
Expandable substrings are case-sensitive on Unix and case-insensitive on Windows. No string expansion occurs if the referenced environment variable is undefined.
Environment variables with names "APPDIR", "BINDIR", and "ROOTDIR" will be ignored, and these expandable substrings will be replaced by values calculated by the app launcher.
Prefix the dollar sign character with the backslash character (\) to prevent substring expansion.
--java-optionsoptionsOptions to pass to the Java runtime
This option can be used multiple times.
Value can contain substrings that will be substituted at runtime, such as for the --arguments option.
--main-classclass-nameQualified name of the application main class to execute
This option can only be used if --main-jar is specified.
--main-jarmain-jarThe main JAR of the application; containing the main class (specified as a path relative to the input path)
Either --module or --main-jar option can be specified but not both.
--moduleor-mmodule-name[/main-class]The main module (and optionally main class) of the application
This module must be located on the module path.
When this option is specified, the main module will be linked in the Java runtime image. Either --module or --main-jar option can be specified but not both.
Platform dependent options for creating the application launcher:
Windows platform options (available only when running on Windows):
--win-consoleCreates a console launcher for the application, should be specified for application which requires console interactions
macOS platform options (available only when running on macOS):
--mac-package-identifieridentifierAn identifier that uniquely identifies the application for macOS
Defaults to the main class name.
May only use alphanumeric (A-Z,a-z,0-9), hyphen (-), and period (.) characters.
--mac-package-namenameName of the application as it appears in the Menu Bar
This can be different from the application name.
This name must be less than 16 characters long and be suitable for displaying in the menu bar and the application Info window. Defaults to the application name.
--mac-package-signing-prefixprefixWhen signing the application package, this value is prefixed to all components that need to be signed that don't have an existing package identifier.
--mac-signRequest that the package or the predefined application image be signed.
--mac-signing-keychainkeychain-nameName of the keychain to search for the signing identity
If not specified, the standard keychains are used.
--mac-signing-key-user-namenameTeam or user name portion in Apple signing identities
--mac-app-storeIndicates that the jpackage output is intended for the Mac App Store.
--mac-entitlementspathPath to file containing entitlements to use when signing executables and libraries in the bundle
--mac-app-categorycategoryString used to construct LSApplicationCategoryType in application plist
The default value is "utilities".
Options for creating the application package:
--about-urlurlURL of the application's home page
--app-imagedirectoryLocation of the predefined application image that is used to build an installable package (on all platforms) or to be signed (on macOS)
(absolute path or relative to the current directory)
--file-associationspathPath to a Properties file that contains list of key, value pairs
(absolute path or relative to the current directory)
The keys "extension", "mime-type", "icon", and "description" can be used to describe the association.
This option can be used multiple times.
--install-dirpathAbsolute path of the installation directory of the application (on macOS or linux), or relative sub-path of the installation directory such as "Program Files" or "AppData" (on Windows)
--license-filepathPath to the license file
(absolute path or relative to the current directory)
--runtime-imagepathPath of the predefined runtime image to install
(absolute path or relative to the current directory)
Option is required when creating a runtime installer.
--launcher-as-serviceRequest to create an installer that will register the main application launcher as a background service-type application.
Platform dependent options for creating the application package:
Windows platform options (available only when running on Windows):
--win-dir-chooserAdds a dialog to enable the user to choose a directory in which the product is installed.
--win-help-urlurlURL where user can obtain further information or technical support
--win-menuAdds a Start menu shortcut for this application, or requests to do so if --win-shortcut-prompt is specified
--win-menu-groupmenu-group-nameStart Menu group this application is placed in
--win-per-user-installInstalls the application on a per-user basis. Without this option installs per-machine
--win-shortcutAdds a desktop shortcut for this application, or requests to do so if --win-shortcut-prompt is specified
--win-shortcut-promptAdds a dialog if at least one of --win-menu or --win-shortcut are specified to enable the user to choose if these shortcuts will be created by the installer
--win-update-urlurlURL of available application update information
--win-upgrade-uuididUUID associated with upgrades for this package
--win-with-uiEnforces the installer to have UI
Linux platform options (available only when running on Linux):
--linux-package-namenameName for Linux package
Defaults to the application name.
--linux-deb-maintaineremail-addressMaintainer for .deb bundle
--linux-menu-groupmenu-group-nameMenu group this application is placed in
--linux-package-depspackage-dep-stringRequired packages or capabilities for the application
--linux-rpm-license-typetypeType of the license ("License: value" of the RPM .spec)
--linux-app-releasereleaseRelease value of the RPM <name>.spec file or Debian revision value of the DEB control file
--linux-app-categorycategory-valueGroup value of the RPM <name>.spec file or Section value of DEB control file
--linux-shortcutCreates a shortcut for the application.
macOS platform options (available only when running on macOS):
--mac-dmg-contentadditional-content [,additional-content...]Include all the referenced content in the dmg.
This option can be used more than once.
jpackage Examples
Generate an application package suitable for the host system:
For a modular application:
jpackage -n name -p modulePath -m moduleName/className
For a non-modular application:
jpackage -i inputDir -n name \
--main-class className --main-jar myJar.jar
From a pre-built application image:
jpackage -n name --app-image appImageDir
Generate an application image:
For a modular application:
jpackage --type app-image -n name -p modulePath \
-m moduleName/className
For a non-modular application:
jpackage --type app-image -i inputDir -n name \
--main-class className --main-jar myJar.jar
To provide your own options to jlink, run jlink separately:
jlink --output appRuntimeImage -p modulePath \
--add-modules moduleName \
--no-header-files [<additional jlink options>...]
jpackage --type app-image -n name \
-m moduleName/className --runtime-image appRuntimeImage
Generate a Java runtime package:
jpackage -n name --runtime-image <runtime-image>
Sign the predefined application image (on macOS):
jpackage --type app-image --app-image <app-image> \
--mac-sign [<additional signing options>...]
Note: the only additional options that are permitted in this mode are:
the set of additional mac signing options and --verbose
jpackage and jlink
jpackage will use jlink to create Java Runtime unless the --runtime-image option is used. The created Java Runtime image on Windows will include MS runtime libraries bundled with the JDK. If MS runtime libraries of a different version are needed for the application, the user will need to add/replace those themselves.
jpackage resource directory
Icons, template files, and other resources of jpackage can be over-ridden by adding replacement resources to this directory. jpackage will lookup files by specific names in the resource directory.
Resource directory files considered only when running on Linux:
<launcher-name>.pngApplication launcher icon
Default resource is JavaApp.png
<launcher-name>.desktopA desktop file to be used with
xdg-desktop-menucommandConsidered with application launchers registered for file associations and/or have an icon
Default resource is template.desktop
Resource directory files considered only when building Linux DEB/RPM installer:
<package-name>-<launcher-name>.servicesystemd unit file for application launcher registered as a background service-type application
Default resource is unit-template.service
Resource directory files considered only when building Linux RPM installer:
<package-name>.specRPM spec file
Default resource is template.spec
Resource directory files considered only when building Linux DEB installer:
controlControl file
Default resource is template.control
copyrightCopyright file
Default resource is template.copyright
preinstallPre-install shell script
Default resource is template.preinstall
prermPre-remove shell script
Default resource is template.prerm
postinstallPost-install shell script
Default resource is template.postinstall
postrmPost-remove shell script
Default resource is template.postrm
Resource directory files considered only when running on Windows:
<launcher-name>.icoApplication launcher icon
Default resource is JavaApp.ico
<launcher-name>.propertiesProperties file for application launcher executable
Default resource is WinLauncher.template
Resource directory files considered only when building Windows MSI/EXE installer:
<application-name>-post-image.wsfA Windows Script File (WSF) to run after building application image
main.wxsMain WiX project file
Default resource is main.wxs
overrides.wxiOverrides WiX project file
Default resource is overrides.wxi
service-installer.exeService installer executable
Considered if some application launchers are registered as background service-type applications
<launcher-name>-service-install.wxiService installer WiX project file
Considered if some application launchers are registered as background service-type applications
Default resource is service-install.wxi
<launcher-name>-service-config.wxiService installer WiX project file
Considered if some application launchers are registered as background service-type applications
Default resource is service-config.wxi
InstallDirNotEmptyDlg.wxsWiX project file for installer UI dialog checking installation directory doesn't exist or is empty
Default resource is InstallDirNotEmptyDlg.wxs
ShortcutPromptDlg.wxsWiX project file for installer UI dialog configuring shortcuts
Default resource is ShortcutPromptDlg.wxs
bundle.wxfWiX project file with the hierarchy of components of application image
ui.wxfWiX project file for installer UI
os-condition.wxfWiX project file with the condition to block installation on older versions of Windows
Default resource is os-condition.wxf
wix-conv.xslWiX source code converter. Used for converting WiX sources from WiX v3 to v4 schema when WiX v4 or newer is used
Default resource is wix3-to-wix4-conv.xsl
Resource directory files considered only when building Windows EXE installer:
WinInstaller.propertiesProperties file for the installer executable
Default resource is WinInstaller.template
<package-name>-post-msi.wsfA Windows Script File (WSF) to run after building embedded MSI installer for EXE installer
installer.exeExecutable wrapper for MSI installer
Default resource is msiwrapper.exe
Resource directory files considered only when running on macOS:
<launcher-name>.icnsApplication launcher icon
Default resource is JavaApp.icns
Info.plistApplication property list file
Default resource is Info-lite.plist.template
Runtime-Info.plistJava Runtime property list file
Default resource is Runtime-Info.plist.template
<application-name>.entitlementsSigning entitlements property list file
Default resource is sandbox.plist
Resource directory files considered only when building macOS PKG/DMG installer:
<package-name>-post-image.shShell script to run after building application image
Resource directory files considered only when building macOS PKG installer:
uninstallerUninstaller shell script
Considered if some application launchers are registered as background service-type applications
Default resource is uninstall.command.template
preinstallPre-install shell script
Default resource is preinstall.template
postinstallPost-install shell script
Default resource is postinstall.template
services-preinstallPre-install shell script for services package
Considered if some application launchers are registered as background service-type applications
Default resource is services-preinstall.template
services-postinstallPost-install shell script for services package
Considered if some application launchers are registered as background service-type applications
Default resource is services-postinstall.template
<package-name>-background.pngBackground image
Default resource is background_pkg.png
<package-name>-background-darkAqua.pngDark background image
Default resource is background_pkg.png
product-def.plistPackage property list file
Default resource is product-def.plist
<package-name>-<launcher-name>.plistlaunchd property list file for application launcher registered as a background service-type application
Default resource is launchd.plist.template
Resource directory files considered only when building macOS DMG installer:
<package-name>-dmg-setup.scptSetup AppleScript script
Default resource is DMGsetup.scpt
<package-name>-license.plistLicense property list file
Default resource is lic_template.plist
<package-name>-background.tiffBackground image
Default resource is background_dmg.tiff
<package-name>-volume.icnsVolume icon
Default resource is JavaApp.icns