Skip to main content

Version: 23.10

app-package

The app-package task creates an application package archive for the given project.

Task Attributes

All attributes are optional unless otherwise indicated.

AttributeDescription
srcString

Required. The path to the application definition file.

fileString

Required. The output application package archive ZIP file.

versionString

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" />