This task allows to automatically unpublish a complete Fuego project.
Example:
...
<!-- Open a session to the Fuego directory -->
<fuego:session passportref="fuego.passport">
<fuego:unpublish projectName="variationsTest" major="2"/>
</fuego:session>
...
| Attribute | Description | Type | Required? |
| major | Major version of the project to be unpublished. If no major version is specified, the whole project is unpublished. | int | Yes Only when the minor version or the revision are set. |
| revision | Revision of the project to be unpublished. If no revision is specified, every revision for the selected version will be unpublished. | int | No Defaults to being ignored. |
| projectname | Project to be unpublished | String | Yes |
| minor | Minor version of the project to be unpublished. If no minor version is specified, every minor version for the selected major will be unpublished. | int | Yes Only when the revision is set. |
| haltonerror | Whether to stop the ant build process if an error occurs during the execution of this task. | boolean | No Defaults to false |