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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,7 +150,7 @@ By default it will generate next artifacts in `${outputDirectory} ` folder:
150
150
|`envPath`|:x:|`null`| Defines PATH environment variable in GNU/Linux and Mac OS X startup scripts. |
151
151
|`extra`|:x:|`null`| Map with extra properties to be used in customized Velocity templates, accesible through `$info.extra` variable. |
152
152
|`generateInstaller`|:x:|`true`| Generates an installer for the app. |
153
-
|`iconFile`|:x:|`null`| Path to the app icon file (PNG, XPM, ICO or ICNS). **:warning: Deprecated (see [platform specific properties](#platform-specific-properties)).**|
153
+
|`iconFile`|:x:|`null`| Path to the app icon file (PNG, XPM, ICO or ICNS). **:warning: Deprecated (see platform specific properties).**|
154
154
|`jdkPath`|:x:|`${java.home}`| JDK used to generate a customized JRE. It allows to bundle customized JREs for different platforms. |
|`jrePath`|:x:|`""`| Path to JRE folder. If specified, it will bundle this JRE with the app, and won't generate a customized JRE. For Java 8 version or least. |
@@ -187,7 +187,7 @@ By default it will generate next artifacts in `${outputDirectory} ` folder:
187
187
188
188
Some assets, such as application icons and Velocity templates, could be placed in `${assetsDir}` folder organized by platform.
189
189
190
-
```
190
+
```bash
191
191
${assetsDir}/
192
192
├── linux/
193
193
├── mac/
@@ -198,7 +198,7 @@ ${assetsDir}/
198
198
199
199
If icons are located in `${assetsDir}` folders, it would not be necessary to specify the `iconFile` property:
200
200
201
-
```
201
+
```bash
202
202
${assetsDir}/
203
203
├── linux/
204
204
│ ├── ${name}.png # on GNU/Linux it has to be a PNG file for DEB package
@@ -218,7 +218,7 @@ ${assetsDir}/
218
218
219
219
It is possible to use your own customized templates. You just have to put one of the following templates in the `${assetsDir}` folder organized by platform, and the plugin will use these templates instead of default ones:
220
220
221
-
```
221
+
```bash
222
222
${assetsDir}/
223
223
├── linux/
224
224
| ├── assembly.xml.vtl # maven-assembly-plugin template to generate ZIP/TGZ bundles for GNU/Linux
0 commit comments