|
1 | 1 | # JavaPackager |
2 | 2 |
|
3 | | -[](https://central.sonatype.com/artifact/io.github.fvarrui/javapackager/1.7.2) |
| 3 | +[](https://central.sonatype.com/artifact/io.github.fvarrui/javapackager/1.7.3) |
4 | 4 | [](https://www.gnu.org/licenses/gpl-3.0.html) |
5 | 5 |
|
6 | 6 | JavaPackager is a hybrid plugin for **Maven** and **Gradle** which provides an easy way to package Java applications in native Windows, MacOS or GNU/Linux executables, and generate installers for them. |
@@ -120,21 +120,21 @@ gradle packageMyApp |
120 | 120 |
|
121 | 121 | By default it will generate next artifacts in `${outputDirectory} ` folder: |
122 | 122 |
|
123 | | -| Artifact | Description | Platform | Requires | |
124 | | -| --------------------------------------- | ---------------------------------------------------------------- | --------- | --------------------------------------------------------------------------- | |
125 | | -| `${name}` | Directory with native application and other assets. | All | | |
126 | | -| `${name}-${version}-runnable.jar` | Runnable JAR file. | All | | |
127 | | -| `${name}_${version}.AppImage` | AppImage package file. | GNU/Linux | [FUSE 2](https://github.com/AppImage/AppImageKit/wiki/FUSE) to run the app. | |
128 | | -| `${name}_${version}.deb` | DEB package file. | All | | |
129 | | -| `${name}_${version}.rpm` | RPM package file. | All | | |
130 | | -| `${name}_${version}.exe` | Setup file. | Windows | [Inno Setup](http://www.jrsoftware.org/isinfo.php) | |
131 | | -| `${name}_${version}.msi` | MSI installer file. | Windows | [WiX Toolset](https://wixtoolset.org/) | |
132 | | -| `${name}_${version}.msm` | MSI merge module file. | Windows | [WiX Toolset](https://wixtoolset.org/) | |
133 | | -| `${name}_${version}.dmg` | Disk image file (uses **hdiutil**). | MacOS | | |
134 | | -| `${name}_${version}.pkg` | PKG installer file (uses **pkgbuild**). | MacOS | | |
135 | | -| `${name}-${version}-${platform}.zip` | Zipball containing generated directory `${name}`. | All | | |
136 | | -| `${name}-${version}-${platform}.tar.gz` | Compressed tarball containing generated directory `${name}`. | All | | |
137 | | -| `assets` | Directory with all intermediate files generated by JavaPackager. | All | | |
| 123 | +| Artifact | Description | Platform | Requires | |
| 124 | +| --------------------------------------- | ---------------------------------------------------------------- | --------- | ------------------------------------------------------------------------------------------------ | |
| 125 | +| `${name}` | Directory with native application and other assets. | All | | |
| 126 | +| `${name}-${version}-runnable.jar` | Runnable JAR file. | All | | |
| 127 | +| `${name}_${version}.AppImage` | AppImage package file. | GNU/Linux | [FUSE 2](https://github.com/AppImage/AppImageKit/wiki/FUSE) to run the app. | |
| 128 | +| `${name}_${version}.deb` | DEB package file. | All | | |
| 129 | +| `${name}_${version}.rpm` | RPM package file. | All | | |
| 130 | +| `${name}_${version}.exe` | Setup file. | Windows | [Inno Setup](http://www.jrsoftware.org/isinfo.php) (`iscc` command must be in PATH variable) | |
| 131 | +| `${name}_${version}.msi` | MSI installer file. | Windows | [WiX Toolset](https://wixtoolset.org/) (`candle` and `light` commands must be in PATH variable) | |
| 132 | +| `${name}_${version}.msm` | MSI merge module file. | Windows | [WiX Toolset](https://wixtoolset.org/) ( `candle` and `light` commands must be in PATH variable) | |
| 133 | +| `${name}_${version}.dmg` | Disk image file (uses **hdiutil**). | MacOS | | |
| 134 | +| `${name}_${version}.pkg` | PKG installer file (uses **pkgbuild**). | MacOS | | |
| 135 | +| `${name}-${version}-${platform}.zip` | Zipball containing generated directory `${name}`. | All | | |
| 136 | +| `${name}-${version}-${platform}.tar.gz` | Compressed tarball containing generated directory `${name}`. | All | | |
| 137 | +| `assets` | Directory with all intermediate files generated by JavaPackager. | All | | |
138 | 138 |
|
139 | 139 | > **Inno Setup** and **WiX Toolset** installation [guide](docs/windows-tools-guide.md). |
140 | 140 |
|
|
0 commit comments