@@ -166,9 +166,9 @@ task instances at all, only proxies.
<h3><a name="example">Example Buildfile</a></h3>
<h3><a name="example">Example Buildfile</a></h3>
<pre>
<pre>
<project name="MyProject" default="dist" basedir=".">
<project name="MyProject" default="dist" basedir=".">
<description>
simple example build file
</description>
<description>
simple example build file
</description>
<!-- set global properties for this build -->
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="build" location="build"/>
@@ -182,13 +182,13 @@ task instances at all, only proxies.
</target>
</target>
<target name="compile" depends="init"
<target name="compile" depends="init"
description="compile the source " >
description="compile the source">
<!-- Compile the java code from ${src} into ${build} -->
<!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}"/>
<javac srcdir="${src}" destdir="${build}"/>
</target>
</target>
<target name="dist" depends="compile"
<target name="dist" depends="compile"
description="generate the distribution" >
description="generate the distribution">
<!-- Create the distribution directory -->
<!-- Create the distribution directory -->
<mkdir dir="${dist}/lib"/>
<mkdir dir="${dist}/lib"/>
@@ -197,7 +197,7 @@ task instances at all, only proxies.
</target>
</target>
<target name="clean"
<target name="clean"
description="clean up" >
description="clean up">
<!-- Delete the ${build} and ${dist} directory trees -->
<!-- Delete the ${build} and ${dist} directory trees -->
<delete dir="${build}"/>
<delete dir="${build}"/>
<delete dir="${dist}"/>
<delete dir="${dist}"/>