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





------- Additional Comments From [EMAIL PROTECTED]  2003-04-24 00:57 -------
In ant 1.5 you can put a taskdef outside of any target to have it run first; in
ant1.6 anything goes. This is an implicit init target. 

<project init="init" default="all" final="end">
   <taskdef name="foo" classname="my.custom.class"/>

   <target name="all">
      <echo message="Hello World"/>
   </target>

</project>

Reply via email to