Skip to content

Commit 1990101

Browse files
committed
Update README.md
1 parent d52ff7b commit 1990101

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ mvn package
5555

5656
And by default it will generate next artifacts in `target ` folder:
5757

58-
| Artifact | Description |
59-
| ----------------------------------------- | ------------------------------------------------------------ |
60-
| `${name}` | Directory with the native application and other needed assets. |
61-
| `projectname-projectversion-runnable.jar` | Runnable JAR file. |
62-
| `projectname_projectversion.deb` | DEB package file if it's executed on GNU/Linux (requires **dpkg-deb**). |
63-
| `projectname_projectversion.rpm` | RPM package file if it's executed on GNU/Linux (requires **alien** & **rpmbuild**). |
64-
| `projectname_projectversion.exe` | Installer file if it's executed on Windows (requires [**Inno Setup**](http://www.jrsoftware.org/isinfo.php)). |
65-
| `projectname_projectversion.dmg` | Disk image file if it's executed on Mac OS X (requires **hdiutil**). |
58+
| Artifact | Description |
59+
| --------------------------------- | ------------------------------------------------------------ |
60+
| `${name}` | Directory with the native application and other needed assets. |
61+
| `${name}-${version}-runnable.jar` | Runnable JAR file. |
62+
| `${name}_${version}.deb` | DEB package file if it's executed on GNU/Linux (requires **dpkg-deb**). |
63+
| `${name}_${version}.rpm` | RPM package file if it's executed on GNU/Linux (requires **alien** & **rpmbuild**). |
64+
| `${name}_${version}.exe` | Installer file if it's executed on Windows (requires [**Inno Setup**](http://www.jrsoftware.org/isinfo.php)). |
65+
| `${name}_${version}.dmg` | Disk image file if it's executed on Mac OS X (requires **hdiutil**). |
6666

6767
> :warning: DEB, RPM, EXE installer and DMG files will be ommited if `generateInstaller` plugin property is `false` or if target platform is different from execution platform.
6868
@@ -117,11 +117,11 @@ If icons are located in `assets` folders, it would not be necessary to specify t
117117
<project>/
118118
└── assets/
119119
├── linux/
120-
│   └── projectname.png # on GNU/Linux it has to be a png image
120+
│   └── ${name}.png # on GNU/Linux it has to be a png image
121121
├── macosx/
122-
│   └── projectname.icns # on Mac OS X it has to be a icns file
122+
│   └── ${name}.icns # on Mac OS X it has to be a icns file
123123
└── windows/
124-
└── projectname.ico # on Windows it has to be a ico file
124+
└── ${name}.ico # on Windows it has to be a ico file
125125
```
126126

127127
> **projectname** corresponds to `name` plugin property.

0 commit comments

Comments
 (0)