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
|`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. |
95
95
|`licenseFile`|:x:|`${project.licenses[0].url}` or `${project.basedir}/LICENSE`| Path to project license file. |
@@ -148,11 +148,12 @@ If icons are located in `assets` folders, it would not be necessary to specify t
148
148
<project>/
149
149
└── assets/
150
150
├── linux/
151
-
│ └── ${name}.png # on GNU/Linux it has to be a png image
151
+
│ ├── ${name}.png # on GNU/Linux it has to be a PNG file for DEB package
152
+
│ └── ${name}.xpm # and XPM file for RPM package
152
153
├── mac/
153
-
│ └── ${name}.icns # on Mac OS X it has to be a icns file
154
+
│ └── ${name}.icns # on Mac OS X it has to be a ICNS file
154
155
└── windows/
155
-
└── ${name}.ico # on Windows it has to be a ico file
156
+
└── ${name}.ico # on Windows it has to be a ICO file
156
157
```
157
158
158
159
> :warning: If `iconFile` plugin property is not specified and it can't find the correct icon in `assets` folder, it will use an [icon by default](https://raw.githubusercontent.com/fvarrui/JavaPackager/master/src/main/resources/linux/default-icon.png) for all platforms.
0 commit comments