|
@@ -11,12 +11,14 @@ |
|
|
|
|
|
|
|
|
<p>FileLists are explicitly named lists of files. Whereas FileSets |
|
|
<p>FileLists are explicitly named lists of files. Whereas FileSets |
|
|
act as filters, returning only those files that exist in the file |
|
|
act as filters, returning only those files that exist in the file |
|
|
system and match specified patterns, filelists are useful for |
|
|
|
|
|
specifying filenames that may or may not exist. Multiple files are |
|
|
|
|
|
specified via a comma-separated list, with no support for wildcards. |
|
|
|
|
|
|
|
|
system and match specified patterns, FileLists are useful for |
|
|
|
|
|
specifying files that may or may not exist. Multiple files are |
|
|
|
|
|
specified as a list of files, relative to the specified directory, |
|
|
|
|
|
with no support for wildcard expansion (filenames with wildcards will be |
|
|
|
|
|
included in the list unchanged). |
|
|
FileLists can appear inside tasks that support this feature or at the |
|
|
FileLists can appear inside tasks that support this feature or at the |
|
|
same level as <code>target</code> - i.e., as children of |
|
|
|
|
|
<code>project</code>. |
|
|
|
|
|
|
|
|
same level as <code><target></code> (i.e., as children of |
|
|
|
|
|
<code><project></code>). |
|
|
</p> |
|
|
</p> |
|
|
<table border="1" cellpadding="2" cellspacing="0"> |
|
|
<table border="1" cellpadding="2" cellspacing="0"> |
|
|
<tr> |
|
|
<tr> |
|
@@ -26,12 +28,12 @@ same level as <code>target</code> - i.e., as children of |
|
|
</tr> |
|
|
</tr> |
|
|
<tr> |
|
|
<tr> |
|
|
<td valign="top">dir</td> |
|
|
<td valign="top">dir</td> |
|
|
<td valign="top">the base directory of this FileList.</td> |
|
|
|
|
|
|
|
|
<td valign="top">The base directory of this FileList.</td> |
|
|
<td valign="top" align="center">Yes</td> |
|
|
<td valign="top" align="center">Yes</td> |
|
|
</tr> |
|
|
</tr> |
|
|
<tr> |
|
|
<tr> |
|
|
<td valign="top">files</td> |
|
|
<td valign="top">files</td> |
|
|
<td valign="top">Comma-separated list of file names.</td> |
|
|
|
|
|
|
|
|
<td valign="top">The list of file names.</td> |
|
|
<td valign="top" align="center">Yes</td> |
|
|
<td valign="top" align="center">Yes</td> |
|
|
</tr> |
|
|
</tr> |
|
|
</table> |
|
|
</table> |
|
@@ -49,6 +51,16 @@ same level as <code>target</code> - i.e., as children of |
|
|
actually exist. |
|
|
actually exist. |
|
|
</p> |
|
|
</p> |
|
|
|
|
|
|
|
|
|
|
|
<blockquote><pre> |
|
|
|
|
|
<filelist |
|
|
|
|
|
id="docfiles" |
|
|
|
|
|
dir="${doc.src}" |
|
|
|
|
|
files="foo.xml |
|
|
|
|
|
bar.xml"/> |
|
|
|
|
|
</pre></blockquote> |
|
|
|
|
|
|
|
|
|
|
|
<p>Same files as the example above.</p> |
|
|
|
|
|
|
|
|
<blockquote><pre> |
|
|
<blockquote><pre> |
|
|
<filelist refid="docfiles"/> |
|
|
<filelist refid="docfiles"/> |
|
|
</pre></blockquote> |
|
|
</pre></blockquote> |
|
|