donaldp 02/05/23 23:39:41
Modified: site/docs differences.html
site/src/xdocs differences.xml
Log:
Note another difference.
Revision Changes Path
1.8 +12 -0 jakarta-ant-myrmidon/site/docs/differences.html
Index: differences.html
===================================================================
RCS file: /home/cvs/jakarta-ant-myrmidon/site/docs/differences.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- differences.html 24 May 2002 06:32:00 -0000 1.7
+++ differences.html 24 May 2002 06:39:41 -0000 1.8
@@ -92,6 +92,18 @@
<p>Some of the differences between Ant 1.x and
Myrmidon:</p>
<ul>
<li>
+ Dependencies on targets in other build files are now
+ possible. The user first places a
+ <projectref name="other" location="other/build.xml"/>
+ at the top of build file and then can depend upon a target
+ in that build file by adding a string such as
+ "other->myTarget" into depends attribute of Target. This
+ would then execute the target "myTarget" in the build file
+ "other/build.xml" as a dependency. Note that this differs
from
+ antcall/ant as they are treated like a dependency and thus
can
+ not be re-evaluated in same workspace.
+ </li>
+ <li>
As well as the depends attribute of the Target there is
a new <depends> task that allows you to evaluate
dependencies inside a target just like executing a normal
1.5 +12 -0 jakarta-ant-myrmidon/site/src/xdocs/differences.xml
Index: differences.xml
===================================================================
RCS file: /home/cvs/jakarta-ant-myrmidon/site/src/xdocs/differences.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- differences.xml 24 May 2002 06:32:00 -0000 1.4
+++ differences.xml 24 May 2002 06:39:41 -0000 1.5
@@ -10,6 +10,18 @@
<p>Some of the differences between Ant 1.x and Myrmidon:</p>
<ul>
<li>
+ Dependencies on targets in other build files are now
+ possible. The user first places a
+ <projectref name="other" location="other/build.xml"/>
+ at the top of build file and then can depend upon a target
+ in that build file by adding a string such as
+ "other->myTarget" into depends attribute of Target. This
+ would then execute the target "myTarget" in the build file
+ "other/build.xml" as a dependency. Note that this differs
from
+ antcall/ant as they are treated like a dependency and thus
can
+ not be re-evaluated in same workspace.
+ </li>
+ <li>
As well as the depends attribute of the Target there is
a new <depends> task that allows you to evaluate
dependencies inside a target just like executing a normal
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>