
OpenLaszloBuild task
Compiles the OpenLaszlo source files in an OpenLaszlo Web project.
Prerequisites
Parameters
Attribute | Description | Required |
---|---|---|
project | The OpenLaszlo Web project to build. | Yes |
failOnError | Whether to fail the Ant build when there are compilation errors. | No; Defaults to true |
quiet | Whether to suppress output messages from this task. | No; Defaults to false |
Examples
The following example compiles
the OpenLaszlo source files in the LOBtools
project:
<openLaszloBuild project="LOBTools" />
The
following example compiles the OpenLaszlo source files in the LOBtools
project,
but without output messages and without failing if there are compilation
errors:
<openLaszloBuild project="LOBTools" failOnError="false" quiet="true" />