С Java 8 мы можем справиться с этим сценарием без каких-либо внешних инструментов. javapackager Утилита, поставляемая с Java 8, позволяет создавать автономные пакеты приложений:
- родной тип
Создание автономных пакетов приложений (если это возможно). Используйте параметр -B для предоставления аргументов используемым упаковщикам. Если указан тип, то создается только пакет этого типа. Если тип не указан, используется все.
Следующие значения действительны для типа:
-native type
Generate self-contained application bundles (if possible). Use the -B option to provide arguments to the bundlers being used. If type is specified, then only a bundle of this type is created. If no type is specified, all is used.
The following values are valid for type:
all: Runs all of the installers for the platform on which it is running, and creates a disk image for the application. This value is used if type is not specified.
installer: Runs all of the installers for the platform on which it is running.
image: Creates a disk image for the application. On OS X, the image is the .app file. On Linux, the image is the directory that gets installed.
dmg: Generates a DMG file for OS X.
pkg: Generates a .pkg package for OS X.
mac.appStore: Generates a package for the Mac App Store.
rpm: Generates an RPM package for Linux.
deb: Generates a Debian package for Linux.
В случае окон см. Следующее: doc Мы можем создать MSI или EXE по мере необходимости.
exe: Generates a Windows .exe package.
msi: Generates a Windows Installer package.