Magesh Umasankar wrote:
----- Original Message ----- From: <[EMAIL PROTECTED]>
-<project> +<project default="foo"> <echo message="Called" /> + <target name="foo" /> </project>
This doesn't make sense to me. Why force one to define an empty target, assuming there is
consensus to allow tasks to exist outside
targets? Is it because we want to make
sure that <target> *is* the entry point,
whether it does something or not?
What you propose is a degenerate example. Should be:
<project default="foo">
<target name="foo">
<echo message="Called" />
</target>
</project>
-- Nicola Ken Barozzi [EMAIL PROTECTED] - verba volant, scripta manent - (discussions get forgotten, just code remains) ---------------------------------------------------------------------
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
