imported.xml <project name="imported"> <target name="some-target"/> </project>
build.xml <project name="build"> <import file="imported.xml"> <target name="another-target" depends="imported.some-target"/> </project>
Doesn't work, since some-target is not overridden.
It would be nice if all imported build file targets were namespaced regardless of whether the targets were overridden or not.
What are the implications of making this change?
Thanks, Erik
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]