<project name="MyProject" default="dist" basedir=".">
<description>
simple example build file
</description>
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
<target name="hello-ant">
<echo>Hello Apache Ant</echo>
</target>
<target name="init">
<echo>init</echo>
</target>
<target name="compile" depends="init"
description="compile the source">
<echo>compile</echo>
</target>
<target name="dist" depends="compile"
description="generate the distribution">
<echo>dist</echo>
</target>
<target name="clean"
description="clean up">
<echo>clean</echo>
</target>
</project>