From 178a39c5d4d1dcf578e34e9f926a3918c9210ae7 Mon Sep 17 00:00:00 2001
From: Diane Holt
++<fileset dir="${server.src}" casesensitive="yes" > + <include name="**/*.java"/> + <exclude name="**/*Test*"/> +</fileset> +
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" > <include name="**/*.java"/> @@ -79,16 +88,16 @@ attributes. </patternset> </fileset>
Groups all files in directory ${server.src}
that are Java
-source files and don't have the text Test
in their
-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"/> </fileset>
Groups all files in directory ${client.src}
, using the
-same patterns as the example above.
Copyright © 2001 Apache Software Foundation. All rights