You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`${name}`| Directory with the native application and other needed assets. |
65
-
|`${name}-${version}-runnable.jar`| Runnable JAR file. |
66
-
|`${name}_${version}.deb`| DEB package file if it's executed on GNU/Linux (requires **dpkg-deb**). |
67
-
|`${name}_${version}.rpm`| RPM package file if it's executed on GNU/Linux (requires **rpm-build**). |
68
-
|`${name}_${version}.exe`| Installer file if it's executed on Windows (requires [**Inno Setup**](http://www.jrsoftware.org/isinfo.php)). |
69
-
|`${name}_${version}.dmg`| Disk image file if it's executed on Mac OS X (requires **hdiutil**). |
70
-
|`${name}-${version}-bundle.zip`| Zipball containing generated directory `${name}` if `createZipball`property is `true`.|
71
-
|`${name}-${version}-bundle.tar`| Tarball containing generated directory `${name}` if `createTarball`property is `true`.|
72
-
|`${name}-${version}-bundle.tar.gz`| Compressed tarball containing generated directory `${name}` if`createTarball`property is `true`.|
73
-
74
-
> :warning: DEB, RPM, EXE installer and DMG files will be ommited if `generateInstaller` property is `false` or if target platform is different from current platform.
|`${name}`| Directory with the native application and other needed assets. ||
65
+
|`${name}-${version}-runnable.jar`| Runnable JAR file. ||
66
+
|`${name}_${version}.deb`| DEB package file if it's executed on GNU/Linux (requires **dpkg-deb**). |`generateInstaller`|
67
+
|`${name}_${version}.rpm`| RPM package file if it's executed on GNU/Linux (requires **rpm-build**). |`generateInstaller`|
68
+
|`${name}_${version}.exe`| Installer file if it's executed on Windows (requires [**Inno Setup**](http://www.jrsoftware.org/isinfo.php)). |`generateInstaller`|
69
+
|`${name}_${version}.dmg`| Disk image file if it's executed on Mac OS X (requires **hdiutil**). |`generateInstaller`|
> :warning: DEB, RPM, EXE installer and DMG files generation will be ommited if target platform is different from current platform (see `platform` property).
75
75
76
76
### Plugin configutation properties
77
77
@@ -108,7 +108,7 @@ And by default it will generate next artifacts in `target ` folder:
108
108
109
109
> See [**Older documentation**](#older-documentation) for previous versions properties.
110
110
111
-
> :warning: Be careful when using the `platform` property if your project uses platform dependent libraries, so the libraries of the current platform will be copied, not those of the target platform. You can solve this problem using `classifiers`.
111
+
> :warning: Be careful when using the `platform` property if your project uses platform dependent libraries, so the libraries of the current platform will be copied, not those required for the target platform. You can solve this problem using `classifiers`. Also, customized JRE generation will be ommited.
0 commit comments