Version: 20.11 (EOL)
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 | StringRequired. The path to the application definition file. |
file | StringRequired. The output application package archive ZIP file. |
version | StringRequired. 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" />