Build Extensions general attributes
These attributes are common to all the Build Extensions Ant tasks that extend the
AbstractExtensionsTask
or the
AbstractExtensionsTeamTask
.
Attributes
The following table describes the Build Extensions general attributes.
Attribute | Description | Required |
---|---|---|
failOnError | If if it is set to true (default value), the task fails if it encounters
an error. If it is set to false , most errors are ignored and the task is
completed. |
No |
failProperty | Name of the Ant property where the result of the task is to be stored. If the task is
successful, the specified property is set to false . If the task fails, the
specified property is set to true . If failOnError is set to
true , this option has no effect. |
No |
reportError | If it is set to true (default value) and if failOnError
is set to false , an informational message is written to the log when an error is
encountered. If it is set to false , no message is written to the log when an error
is encountered. If failOnError is set to true , this option has no
effect. |
No |
reportTrace | If it is set to true and if reportError is set to
true and failOnError is set to false , the stack
trace for the error is written to the log. If it is set to false (default value),
the stack trace for the error is not written to the log. If failOnError is set to
true , or if reportError is set to false , this
option has no effect. |
No |
timerOn | If it is set to true , the build extensions timer facilities are enabled.
The default is false . The timer facilities track execution time for specific task
activities. Not all the tasks provide information for the timer facilities.Note: The build
extensions timer facilities can also be enabled by creating an Ant property named
timerOn and setting it to true . |
No |