How to delete/remove links created via ANT task logLinkPublisher
Many files were created and linked to RTC build result using ANT task
We now want to delete/remove the links inside log tab under build result. Is it possible if so how to do this using ANT?
In eclipse client we see remove option to do this manually but the requirement is to do it programmatically using ANT.
<logLinkPublisher repositoryAddress="${repositoryAddress}"
userId="${userId}"
password="${password}"
buildResultUUID="${buildResultUUID}"
url="http://example/build_tool.log"
localFilePath="build_tool.log"
label="Build Tool Output Log"/>
We now want to delete/remove the links inside log tab under build result. Is it possible if so how to do this using ANT?
In eclipse client we see remove option to do this manually but the requirement is to do it programmatically using ANT.
Accepted answer
Hi Sanjeev, there is no Ant task for deleting contributions that have been made to a build. The Java client API would allow this. It probably wouldn't be too difficult to script in JRuby or Groovy. For more on the API options, see this entry in the Build FAQ.