Version: 24.04
app-package
The app-package
task creates an application package archive for the given project.
Task Attributes
All attributes are optional unless otherwise indicated.
Attribute | Description |
---|---|
src | String Required. The path to the application definition file. |
file | String Required. The output application package archive ZIP file. |
version | String Required. The package version. |
Example
The example ant task below creates an application package archive ZIP file for an application package definition specified by the src
attribute. The file
attribute specifies the target application package archive ZIP file output.
<app-package file="target/app-home-loan-v${version}.zip"
src="src/app-package-def.json"
version="1.0.0" />