From db9b493a16bcb13832cd427d16d045885573f5b4 Mon Sep 17 00:00:00 2001
From: Diane Holt <patternset>
directly, as well as
that have the text Test
in their name.
<dirset dir="${build.dir}"> - <patternset id="non.test.sources"> + <patternset id="non.test.classes"> <include name="apps/**/classes"/> <exclude name="apps/**/*Test*"/> </patternset> @@ -87,11 +87,11 @@ that have the textTest
in their name. a PatternSet that can be referenced in other<dirset>
elements, rooted at a different directory.--<dirset dir="${debug_build.src}" > - <patternset refid="non.test.sources"/> +<dirset dir="${debug_build.dir}" > + <patternset refid="non.test.classes"/> </dirset>Groups all files in directory
${debug_build.src}
, using the +Groups all files in directory
${debug_build.dir}
, using the same patterns as the above example.