diff --git a/docs/manual/CoreTasks/ant.html b/docs/manual/CoreTasks/ant.html index b914afc25..1edcd4949 100644 --- a/docs/manual/CoreTasks/ant.html +++ b/docs/manual/CoreTasks/ant.html @@ -199,8 +199,7 @@ details:

Examples

-<ant antfile="subproject/subbuild.xml"
-     dir="subproject" target="compile"/>
+<ant antfile="subproject/subbuild.xml" target="compile"/>
 
 <ant dir="subproject"/>
 
@@ -213,6 +212,14 @@ details:

<property name="output.type" value="html"/> </ant>
+ +

These lines invoke the same build file:

+
+<ant antfile="sub1/sub2/build.xml" />
+<ant antfile="sub2/build.xml" dir="sub1" />
+<ant antfile="build.xml" dir="sub1/sub2" />
+
+

The build file of the calling project defines some <path> elements like this:

@@ -269,8 +276,8 @@ a <path> with the id path1, but new project using the id path2.


-

Copyright © 2000-2005 The Apache Software Foundation. All rights +

Copyright © 2000-2006 The Apache Software Foundation. All rights Reserved.

- + \ No newline at end of file