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=19259>. 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=19259 Ant projects should support "init" and "final" <project/> attributes Summary: Ant projects should support "init" and "final" <project/> attributes Product: Ant Version: 1.5.3 Platform: All OS/Version: All Status: NEW Severity: Enhancement Priority: Other Component: Core AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Just like the "default" attribute of a <project/> element, which can be specified to indicate which target to execute by default, ant should also provide an "init" attribute to indicate a target to execute before any other targets _IF_ it exists and a "final" target to execute after all other targets _IF_ it exists. Ex: <project init="start" default="all" final="end"> <target name="init"> <taskdef name="foo" classname="my.custom.class"/> </target> <target name="all"> <echo message="Hello World"/> </target> </project>