From: <sco...@jb...> - 2005-05-04 05:32:40
|
So its not an issue to have the imported project using whatever xsd they want, at least for a simple example: | build.xml: | <project name="Top" default="echo"> | <import file="subproject.xml" /> | <target name="echo"> | <echo message="top echo" /> | <antcall target="subproject-echo" /> | </target> | </project> | | subproject.xml | <project | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | xsi:noNamespaceSchemaLocation="subproject.xsd"> | <target name="subproject-echo"> | <echo message="echo from subproject" /> | </target> | </project> | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3876388#3876388 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3876388 |