target ordering not working as documented PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3110 *** shadow/3110 Mon Aug 13 14:54:29 2001 --- shadow/3110.tmp.4161 Mon Aug 13 14:54:29 2001 *************** *** 0 **** --- 1,46 ---- + +============================================================================+ + | target ordering not working as documented | + +----------------------------------------------------------------------------+ + | Bug #: 3110 Product: Ant | + | Status: NEW Version: 1.3 | + | Resolution: Platform: Other | + | Severity: Major OS/Version: Other | + | Priority: Other Component: Core | + +----------------------------------------------------------------------------+ + | Assigned To: [EMAIL PROTECTED] | + | Reported By: [EMAIL PROTECTED] | + | CC list: Cc: | + +----------------------------------------------------------------------------+ + | URL: | + +============================================================================+ + | DESCRIPTION | + Below is a simple build file. According to the documentation, it should + execute in the order a,b,c,d, but it runs in the reverse: d,c,b,a. This + happens in both 1.3 and the 1.5 alpha. + + check out the docs at: http://jakarta.apache.org/ant/manual/using.html + + <project name="test" default="run" basedir="."> + + <target name="a"> + <echo message="a"/> + </target> + + <target name="b"> + <echo message="b"/> + </target> + + <target name="c"> + <echo message="c"/> + </target> + + <target name="d"> + <echo message="d"/> + </target> + + <target name="run" depends="d,c,b,a"> + <echo message="run"/> + </target> + + + </project> \ No newline at end of file
