File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/main/java/io/github/fvarrui/javapackager/gradle Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,7 @@ By default it will generate next artifacts in `${outputDirectory} ` folder:
145145| ` additionalModulePaths ` | :x : | ` [] ` | Additional module paths for ` jdeps ` . |
146146| ` additionalModules ` | :x : | ` [] ` | Additional modules to the ones identified by ` jdeps ` or the specified with ` modules ` property. |
147147| ` additionalResources ` | :x : | ` [] ` | Additional files and folders to include in the bundled app. |
148+ | ` arch ` | :x : | ` ${os.arch} ` | The dependency of some ArtifactGenerator objects in the process of making packages, such as GenerateDeb |
148149| ` administratorRequired ` | :x : | ` false ` | App will run as administrator (with elevated privileges). |
149150| ` assetsDir ` | :x : | ` ${basedir}/assets ` or ` ${projectdir}/assets ` | Assets location (icons and custom Velocity templates). |
150151| ` bundleJre ` | :x : | ` false ` | Embeds a customized JRE with the app. |
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ protected Packager createPackager() throws Exception {
2323 .additionalModulePaths (extension .getAdditionalModulePaths ())
2424 .additionalResources (extension .getAdditionalResources ())
2525 .administratorRequired (extension .getAdministratorRequired ())
26+ .arch (extension .getArch ())
2627 .assetsDir (extension .getAssetsDir ())
2728 .bundleJre (extension .getBundleJre ())
2829 .classpath (extension .getClasspath ())
@@ -62,5 +63,5 @@ protected Packager createPackager() throws Exception {
6263 .winConfig (extension .getWinConfig ());
6364
6465 }
65-
66+
6667}
You can’t perform that action at this time.
0 commit comments