Skip to content

Commit e2d48f1

Browse files
committed
Update README.md
1 parent cc76e2a commit e2d48f1

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@ mvn package
5959

6060
And by default it will generate next artifacts in `target ` folder:
6161

62-
| Artifact | Description |
63-
| ---------------------------------- | ------------------------------------------------------------ |
64-
| `${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.
62+
| Artifact | Description | Related property |
63+
| ---------------------------------- | ------------------------------------------------------------ | ------------------- |
64+
| `${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` |
70+
| `${name}-${version}-bundle.zip` | Zipball containing generated directory `${name}`. | `createZipball` |
71+
| `${name}-${version}-bundle.tar` | Tarball containing generated directory `${name}`. | `createTarball` |
72+
| `${name}-${version}-bundle.tar.gz` | Compressed tarball containing generated directory `${name}`. | `createTarball` |
73+
74+
> :warning: DEB, RPM, EXE installer and DMG files generation will be ommited if target platform is different from current platform (see `platform` property).
7575
7676
### Plugin configutation properties
7777

@@ -108,7 +108,7 @@ And by default it will generate next artifacts in `target ` folder:
108108

109109
> See [**Older documentation**](#older-documentation) for previous versions properties.
110110
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.
112112
113113
#### Version information property example
114114

0 commit comments

Comments
 (0)