You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by du...@yahoo.com on 2005/04/25 15:14:32 UTC

How to combine multiple file sets ?


I thought I could have had something like this :

  <fileset id="base.src" dir="base" casesensitive="yes" defaultexcludes="yes">
    <include name="com/customer/base/**"/>
    <exclude name="com/customer/base/**/*Test*.java"/>
  </fileset>

  <fileset id="services.src" dir="services" casesensitive="yes" defaultexcludes="yes">
    <include name="com/customer/services/**"/>
    <exclude name="com/customer/services/**/*Test*.java"/>
  </fileset>
        
  <fileset id="all.src">
    <fileset refid="base.src" />
    <fileset refid="services.src" />
  </fileset>

Any idea on how to combine them ...?

\T,


Any fool can write code that a computer can understand. 
Good programmers write code that humans can understand.
                                                   Martin Fowler 
T. : +32 (0)2 742 05 94
M. : +32 (0)497 44 68 12

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org