The table below describes completeTeamBuild task attributes.
| Attribute | Description | Required |
|---|---|---|
buildResultUUID |
For the completeBuild task, the UUID of the build result to complete. |
Yes |
repositoryAddress |
Address of the team repository to use. The value of this attribute is typically ${repositoryAddress} because that property is built-in when using the Jazz Build Engine. |
Yes |
userId |
User ID to use. |
Yes |
buildNotNecessary |
Set to true if the build was not necessary. For example, a build might not be necessary if there have been no source changes since the previous build. Only use this attribute in an Ant script that controls the entire build lifecycle. |
No |
failOnError |
If true (the default), the task fails if it encounters an error. If false, some errors are ignored and the task is completed. |
No |
password |
Password for the user ID, a zero-length string by default unless specified. |
No |
passwordFile |
The password file to use for the connection. You can create a suitable password file by invoking the Jazz Build Engine with the -createPasswordFile argument. You can only specify one password file. |
No |
status |
Status to set in the IBuildResultContribution. Valid values are OK, ERROR, and WARNING. |
No |
verbose |
Specifies more message output. The default is false. |
No |
<completeTeamBuild repositoryAddress="${repositoryAddress}"
userId="${userId}"
password="${password}"
buildResultUUID="${buildResultUUID}"
status="OK"
verbose="true" />