http://nagoya.apache.org/bugzilla/show_bug.cgi?id=607
*** shadow/607 Wed Feb 14 08:59:32 2001 --- shadow/607.tmp.21530 Wed Feb 14 09:18:41 2001 *************** *** 2,11 **** | Order not considered in build targets | +----------------------------------------------------------------------------+ | Bug #: 607 Product: Ant | ! | Status: NEW Version: 1.2 | ! | Resolution: Platform: PC | ! | Severity: Major OS/Version: | ! | Priority: Component: Build Process | +----------------------------------------------------------------------------+ | Assigned To: [EMAIL PROTECTED] | | Reported By: [EMAIL PROTECTED] | --- 2,11 ---- | Order not considered in build targets | +----------------------------------------------------------------------------+ | Bug #: 607 Product: Ant | ! | Status: RESOLVED Version: 1.2 | ! | Resolution: WORKSFORME Platform: PC | ! | Severity: Major OS/Version: All | ! | Priority: High Component: Build Process | +----------------------------------------------------------------------------+ | Assigned To: [EMAIL PROTECTED] | | Reported By: [EMAIL PROTECTED] | *************** *** 27,30 **** fashion and only have one dependency for each target. The current Ant documentation indicates that ordering is respected, and I have tested by moving targets in the build file and this ! changes ordering of the build. --- 27,78 ---- fashion and only have one dependency for each target. The current Ant documentation indicates that ordering is respected, and I have tested by moving targets in the build file and this ! changes ordering of the build. ! ! ------- Additional Comments From [EMAIL PROTECTED] 2001-02-14 09:18 ------- ! The following build file executes in the correct order: ! ! --- ! <project name="test_order" default="order"> ! <target name="order2"> ! </target> ! ! <target name="order1"> ! </target> ! ! <target name="order"> ! </target> ! </project> ! --- ! ! The resulting output is ! ! --- ! Buildfile: build.xml ! ! order1: ! ! order2: ! ! order: ! ! BUILD SUCCESSFULL ! ! Total time: 0 seconds. ! --- ! ! If Ant behaved the way you describe, then the result should have been ! ! --- ! Buildfile: build.xml ! ! order2: ! ! order1: ! ! order: ! ! BUILD SUCCESSFULL ! ! Total time: 0 seconds. ! --
