From b443192f7abef76460bff5a6b29ad5818de1cf06 Mon Sep 17 00:00:00 2001
From: Jan Materne
Groups all files in directory ${server.src} that are Java
source files and don't have the text Test in their
name.
<fileset dir="${server.src}" casesensitive="yes">
<patternset id="non.test.sources">
@@ -111,6 +112,7 @@ name.
Groups the same files as the above example, but also establishes
a PatternSet that can be referenced in other
<fileset> elements, rooted at a different directory.
+
<fileset dir="${client.src}" >
<patternset refid="non.test.sources"/>
@@ -118,6 +120,7 @@ a PatternSet that can be referenced in other
Groups all files in directory ${client.src}, using the
same patterns as the above example.
+
<fileset dir="${server.src}" casesensitive="yes">
<filename name="**/*.java"/>
@@ -126,6 +129,7 @@ same patterns as the above example.
Groups the same files as the top example, but using the
<filename> selector.
+
<fileset dir="${server.src}" casesensitive="yes">
<filename name="**/*.java"/>
@@ -138,6 +142,12 @@ same patterns as the above example.
<filename> selector and the <not>
selector container.
+
+<fileset dir="src" includes="main/" />
+
+Selects all files in src/main (e.g. src/main/Foo.java or
+src/main/application/Bar.java).
+
Copyright © 2000-2005 The Apache Software Foundation.
All rights Reserved.