Ant Example 2b
<target name="help">
<echo>
Try using the "build" target.
</echo>
</target>
<target name="clean">
<delete dir="${deploy.home}"/>
</target>
<target name="build" depends="prepare, compile, install"/>
<target name="install">
<copy todir="${class.home}">
<fileset dir="classes"/>
</copy>
</target>
Previous slide
Next slide
Back to first slide
View graphic version