DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18879>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18879 problem with multiple buildnumber tasks Summary: problem with multiple buildnumber tasks Product: Ant Version: 1.5.1 Platform: All OS/Version: Linux Status: NEW Severity: Normal Priority: Other Component: Core tasks AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] I have an ant script that contains more than one buildnumber tags. The first tag sets the build.number property correctly, but further buildnumber tags seem to have no effect on the property. Example: I have two files, a.number and b.number. The build number in a.number is 10 and the build number in b.number is 20. My script contains <buildnumber file="a.number"/> <buildnumber file="b.number"/> After execution, both files have been updated correctly to 11 and 21. However, the property build.number contains the value 10.