Browse Source

Clean up whitespace in build.xml example

master
Razzi Abuissa 10 years ago
parent
commit
66adc2e346
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      manual/using.html

+ 6
- 6
manual/using.html View File

@@ -166,9 +166,9 @@ task instances at all, only proxies.
<h3><a name="example">Example Buildfile</a></h3>
<pre>
&lt;project name=&quot;MyProject&quot; default=&quot;dist&quot; basedir=&quot;.&quot;&gt;
&lt;description&gt;
simple example build file
&lt;/description&gt;
&lt;description&gt;
simple example build file
&lt;/description&gt;
&lt;!-- set global properties for this build --&gt;
&lt;property name=&quot;src&quot; location=&quot;src&quot;/&gt;
&lt;property name=&quot;build&quot; location=&quot;build&quot;/&gt;
@@ -182,13 +182,13 @@ task instances at all, only proxies.
&lt;/target&gt;

&lt;target name=&quot;compile&quot; depends=&quot;init&quot;
description=&quot;compile the source &quot; &gt;
description=&quot;compile the source&quot;&gt;
&lt;!-- Compile the java code from ${src} into ${build} --&gt;
&lt;javac srcdir=&quot;${src}&quot; destdir=&quot;${build}&quot;/&gt;
&lt;/target&gt;

&lt;target name=&quot;dist&quot; depends=&quot;compile&quot;
description=&quot;generate the distribution&quot; &gt;
description=&quot;generate the distribution&quot;&gt;
&lt;!-- Create the distribution directory --&gt;
&lt;mkdir dir=&quot;${dist}/lib&quot;/&gt;

@@ -197,7 +197,7 @@ task instances at all, only proxies.
&lt;/target&gt;

&lt;target name=&quot;clean&quot;
description=&quot;clean up&quot; &gt;
description=&quot;clean up&quot;&gt;
&lt;!-- Delete the ${build} and ${dist} directory trees --&gt;
&lt;delete dir=&quot;${build}&quot;/&gt;
&lt;delete dir=&quot;${dist}&quot;/&gt;


Loading…
Cancel
Save