The setChangeSetsComplete task sets all active change sets in the specified workspace complete.
The task supports Team Build Attributes, Build Extensions Debugging Attributes, Build Extensions General Attributes, as well as, its own task specific attributes. Click on a link for more information on the common attributes.
The following table describes the task specific attributes for the task:
| Task Specific Attributes | ||
| Attribute | Description | Required |
| property | The name of the Ant property in which to return the "All change sets complete" status flag. If all change sets are complete, the property is set to true. Otherwise, the property value is set to false. | No |
| streamName | The name of the stream that is the flow target for the workspace. | Yes |
| workspaceUUID | The UUID of the workspace. The value of this attribute is typically ${team.scm.workspaceUUID} because the property is built-in when using the Jazz Build Engine. | Yes |
Complete all change sets
<target name="main">
<xt:setchangesetscomplete
repositoryAddress="${repositoryAddress}"
userId="${userId}"
passwordFile="${passwordFile}"
property="my.property"
streamName="IMS14.Service"
workspaceUUID="${team.scm.workspaceUUID}"
/>
<echo>${my.property}</echo>
</target>