hi there ,

i am using an Ant task to build subprojects , and it would be really
handy to be able to define all my pattern sets in the main project and
use them from within the subprojects. something like this is what i am
after

 <patternset id="test">
    <include name="mylib/myclass.class" />
 </patternset>

  <ant antfile="${build}/subproject.xml" dir="${basedir}" target="main">

    <patternset refid="test"/>
  </ant>

i know ant accepts nested properties which may have a refid to a path
like structure, but i can't quite seem to achieve what i need with that
(unless i missed something)

is there any reason why i shouldn't do this? is it likely to be included
into the codeline?

thanx, tim

Reply via email to