https://issues.apache.org/bugzilla/show_bug.cgi?id=48974
Summary: depends not working as expected!
Product: Ant
Version: 1.8.0
Platform: PC
OS/Version: Windows XP
Status: NEW
Severity: normal
Priority: P2
Component: Core
AssignedTo: [email protected]
ReportedBy: [email protected]
D:\tmp\d>ant
Buildfile: D:\tmp\d\build.xml
t1:
[echo] t1
t2:
[echo] t2
t3:
[echo] t3
test:
BUILD SUCCESSFUL
Total time: 0 seconds
D:\tmp\d>ant -version
Apache Ant version 1.8.0 compiled on February 1 2010
D:\tmp\d>type build.xml
<project name="test" default="test">
<target name="t1">
<echo>t1</echo>
</target>
<target name="t2">
<echo>t2</echo>
</target>
<target name="t3">
<echo>t3</echo>
</target>
<!-- Expected: t1, t2, t3, t1 shown -->
<target name="test" depends="t1,t2,t3,t1">
</target>
</project>
D:\tmp\d>
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.