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
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Add the following `plugin` tag to your `pom.xml`:
22
22
<plugin>
23
23
<groupId>io.github.fvarrui</groupId>
24
24
<artifactId>javapackager</artifactId>
25
-
<version>1.3.0</version>
25
+
<version>1.4.0</version>
26
26
<executions>
27
27
<execution>
28
28
<phase>package</phase>
@@ -69,7 +69,7 @@ buildscript {
69
69
mavenCentral()
70
70
}
71
71
dependencies {
72
-
classpath 'io.github.fvarrui:javapackager:1.3.0'
72
+
classpath 'io.github.fvarrui:javapackager:1.4.0'
73
73
}
74
74
}
75
75
@@ -140,6 +140,7 @@ By default it will generate next artifacts in `${outputDirectory} ` folder:
140
140
|`administratorRequired`|:x:|`false`| App will run as administrator (with elevated privileges). |
141
141
|`assetsDir`|:x:|`${basedir}/assets` or `${projectdir}/assets`| Assets location (icons and custom Velocity templates). |
142
142
|`bundleJre`|:x:|`false`| Embeds a customized JRE with the app. |
143
+
|`classpath`|:x:|`null`| List of additional paths to JVM classpath, separated with `;` (recommended) or `:`. |
143
144
|`copyDependencies`|:x:|`true`| Bundles all dependencies (JAR files) with the app. |
144
145
|`createTarball`|:x:|`false`| Bundles app folder in tarball. |
145
146
|`createZipball`|:x:|`false`| Bundles app folder in zipball. |
@@ -164,7 +165,7 @@ By default it will generate next artifacts in `${outputDirectory} ` folder:
164
165
|`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. |
165
166
|`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. |
166
167
|`url`|:x:|`null`| App website URL. |
167
-
|`useResourcesAsWorkingDir`|:x:|`true`| Uses app resources folder as default working directory. |
168
+
|`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-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ dependencies {
62
62
}
63
63
64
64
group ='io.github.fvarrui'
65
-
version ='1.4.0-SNAPSHOT'
65
+
version ='1.4.0'
66
66
description ='Hybrid Maven/Gradle plugin to package Java applications as native Windows, Mac OS X or GNU/Linux executables and create installers for them'
|`relocateJar`|:x:|`true`| If `true`, Jar files are located in `Contents/Resources/Java` folder, otherwise they are located in `Contents/Resources` folder. |
30
+
| Property | Mandatory | Default value | Description |
|`relocateJar`|:x:|`true`| If `true`, Jar files are located in `Contents/Resources/Java` folder, otherwise they are located in `Contents/Resources` folder. |
0 commit comments