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