The following snippet will stage the set of built of .jar
files in the dist directory, into the view/VOB location X:\ReleaseVOB\stage.
It will additionally output the results of the staging process to
the file ccstage.xml.
<project name="test" default="main"
xmlns:ca="antlib:net.sourceforge.clearantlib">
<property name="dir.dist" value="dist"/>
<property name="dir.stage" value="X:\ReleaseVOB\stage"/>
<target name="main">
<ca:stage todir="${dir.stage}" outfile="ccstage.xml">
<fileset dir="${dir.dist}">
<include name="**/*.jar"/>
</fileset>
</ca:ccstage>
</target>
</project>
|