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
|`additionalModules`| No |[]|Adds additional modules other than the ones identified by `jdeps`before calling `jlink`. |
81
+
|`additionalModules`| No |[]|Additional modules to the ones identified by `jdeps`or the specified with `modules` property. |
82
82
|`additionalResources`| No |[]| Additional files and folders to include in the bundled app. |
83
-
|`administratorRequired`| No |`false`|If `true`, app will run with administrator privileges. |
83
+
|`administratorRequired`| No |`false`|App will run as administrator (with elevated privileges).|
84
84
|`bundleJre`| No |`false`| Embeds a customized JRE with the app. |
85
-
|`copyDependencies`| No |`true`|If `true`, all dependencies (JAR files) will be bundled with the app. |
86
-
|`customizedJre`| No |`true`|If `true`, a customized JRE will be generated, including only needed modules. Otherwise, all modules will be included. |
85
+
|`copyDependencies`| No |`true`|Bundles all dependencies (JAR files) with the app.|
86
+
|`customizedJre`| No |`true`|Generates a customized JRE, including only identified or specified modules. Otherwise, all modules will be included. |
87
87
|`displayName`| No |`${project.name}`| App name to show. |
88
-
|`envPath`| No |`null`| Defines environment variable PATH in GNU/Linux and Mac OS X startup scripts. |
88
+
|`envPath`| No |`null`| Defines PATH environment variable in GNU/Linux and Mac OS X startup scripts. |
89
89
|`generateInstaller`| No |`true`| Generates an installer for the app. |
90
90
|`iconFile`| No |`null`| Path to the app icon file (PNG, ICO or ICNS). |
91
91
|`jrePath`| No |`""`| 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. |
92
92
|`licenseFile`| No |`${project.licenses[0].url}`| Path to project license file. |
93
93
|`mainClass`| Yes |`null`| Full path to your app main class. |
94
-
|`modules`| No |[]|Uses specified modules to customize the bundled JRE. Don't use `jdeps` to get module dependencies. |
94
+
|`modules`| No |[]|Defines modules to customize the bundled JRE. Don't use `jdeps` to get module dependencies. |
95
95
|`organizationName`| No |`${project.organization.name}`| Organization name. |
96
96
|`organizationUrl`| No |`${project.organization.url}`| Organization website URL. |
97
97
|`organizationEmail`| No |`null`| Organization email. |
98
-
|`platform`| No |`auto`|Specifies the target platform, which could be different to current one. Possible values: `auto`, `mac`, `linux`, `windows`. Use `auto` for using current platform as target. |
99
-
|`runnableJar`| No |`null`|Specifies 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. |
98
+
|`platform`| No |`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. |
99
+
|`runnableJar`| No |`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. |
0 commit comments