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
|`jreMinVersion`|:x:|`null`| JRE minimum version. If an appropriate version cannot be found display error message. Disabled if a JRE is bundled. |
159
-
|`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.|
160
-
|`licenseFile`|:x:|`${project.licenses[0].url}` or `${basedir}/LICENSE` or `${projectdir}/LICENSE`| Path to project license file.|
161
-
|`mainClass`|:heavy_check_mark:|`${exec.mainClass}`| Full path to your app main class.|
162
-
|`modules`|:x:|`[]`| Defines modules to customize the bundled JRE. Don't use `jdeps` to get module dependencies. |
163
-
|`name`|:x:|`${project.name}` or `${project.artifactId}`| App name. |
164
-
|`organizationName`|:x:|`${project.organization.name}` or `"ACME"`| Organization name. |
|`outputDirectory`|:x:|`${project.build.directory}` or `${project.builddir}`| Output directory (where the artifacts will be generated). |
168
-
|`platform`|:x:|`auto`| Defines the target platform, which could be different to the execution platform. Possible values: `auto`, `mac`, `linux`, `windows`. Use `auto` for using execution platform as target. |
169
-
|`runnableJar`|:x:|`null`| Defines your own JAR file to be bundled. If it's ommited, the plugin packages your code in a runnable JAR and bundle it with the app. |
170
-
|`url`|:x:|`null`| App website URL. |
171
-
|`useResourcesAsWorkingDir`|:x:|`true`| Uses app resources folder as default working directory (always `true` on Mac OS). |
|`jreMinVersion`|:x:|`null`|JRE minimum version. If an appropriate version cannot be found display error message. Disabled if a JRE is bundled.|
158
+
|`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. |
159
+
|`licenseFile`|:x:|`${project.licenses[0].url}`or `${basedir}/LICENSE` or `${projectdir}/LICENSE`| Path to project license file.|
160
+
|`mainClass`|:heavy_check_mark:|`${exec.mainClass}`| Full path to your app main class.|
161
+
|`manifest`|:x:|`null`|[Allows adding additional entries to MANIFEST.MF file.](docs/manifest.md)|
162
+
|`modules`|:x:|`[]`| Defines modules to customize the bundled JRE. Don't use `jdeps` to get module dependencies. |
163
+
|`name`|:x:|`${project.name}` or `${project.artifactId}`| App name. |
164
+
|`organizationName`|:x:|`${project.organization.name}` or `"ACME"`| Organization name. |
|`outputDirectory`|:x:|`${project.build.directory}` or `${project.builddir}`| Output directory (where the artifacts will be generated). |
168
+
|`platform`|:x:|`auto`| Defines the target platform, which could be different to the execution platform. Possible values: `auto`, `mac`, `linux`, `windows`. Use `auto` for using execution platform as target. |
169
+
|`runnableJar`|:x:|`null`| Defines your own JAR file to be bundled. If it's ommited, the plugin packages your code in a runnable JAR and bundle it with the app. |
170
+
|`url`|:x:|`null`| App website URL. |
171
+
|`useResourcesAsWorkingDir`|:x:|`true`| Uses app resources folder as default working directory (always `true` on Mac OS). |
Copy file name to clipboardExpand all lines: build.gradle
+1-1
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ dependencies {
63
63
}
64
64
65
65
group ='io.github.fvarrui'
66
-
version ='1.4.2-SNAPSHOT'
66
+
version ='1.4.3-SNAPSHOT'
67
67
description ='Hybrid Maven/Gradle plugin to package Java applications as native Windows, Mac OS X or GNU/Linux executables and create installers for them'
0 commit comments