The following snippet will run "cleartool describe -short"
on the build.xml file and log the output to the
screen:
<project name="test" default="main" xmlns:ca="antlib:net.sourceforge.clearantlib">
<target name="main">
<ca:ccexec>
<arg value="describe"/>
<arg value="-short"/>
<arg value="build.xml"/>
</ca:ccexec>
</target>
</project>
|