Skip to content

Commit 0615a5d

Browse files
committed
Update README.md
1 parent ad1c18e commit 0615a5d

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# JavaPackager
22

3-
[![Maven Central](http://img.shields.io/maven-central/v/io.github.fvarrui/javapackager)](https://central.sonatype.com/artifact/io.github.fvarrui/javapackager/1.7.2)
3+
[![Maven Central](http://img.shields.io/maven-central/v/io.github.fvarrui/javapackager)](https://central.sonatype.com/artifact/io.github.fvarrui/javapackager/1.7.3)
44
[![GPL-3.0](https://img.shields.io/badge/license-GPL--3.0-%250778B9.svg)](https://www.gnu.org/licenses/gpl-3.0.html)
55

66
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
120120

121121
By default it will generate next artifacts in `${outputDirectory} ` folder:
122122

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 | |
138138

139139
> **Inno Setup** and **WiX Toolset** installation [guide](docs/windows-tools-guide.md).
140140

0 commit comments

Comments
 (0)