Browse Source

And correcting the documentation of includes versus <include> in the

main branch as well.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268142 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 24 years ago
parent
commit
fd6b7a8152
1 changed files with 7 additions and 2 deletions
  1. +7
    -2
      docs/index.html

+ 7
- 2
docs/index.html View File

@@ -26,7 +26,7 @@
<li>Dave Walend (<a href="mailto:dwalend@cs.tufts.edu">dwalend@cs.tufts.edu</a>)</li>
</ul>

<p>Version 1.3 - 2000/10/31</p>
<p>Version 1.3 - 2000/11/02</p>

<hr>
<h2>Table of Contents</h2>
@@ -782,6 +782,10 @@ that do not contain the text <code>Test</code> in their name. This set
can be <a href="#references">referred</a> to via
<code>&lt;patternset refid=&quot;non.test.sources&quot;
/&gt;</code> by tasks that support this feature or by FileSets.</p>
<p>Note that while the includes and excludes attributes accept
multiple elements separated by commas or spaces, the nested
&lt;include&gt; and &lt;exclude&gt; elements expect their name
attribute to hold a single pattern.</p>
<h3><a name="fileset">FileSets</a></h3>
<p>FileSets are groups of files. These files can be found in a
directory tree starting in a base directory and are matched by
@@ -2755,7 +2759,8 @@ the propery <code>src2</code>. This can also be represented using nested element
debug=&quot;on&quot;&gt;
&lt;src path=&quot;${src}&quot; /&gt;
&lt;src path=&quot;${src2}&quot; /&gt;
&lt;include name=&quot;mypackage/p1/**,mypackage/p2/**&quot; /&gt;
&lt;include name=&quot;mypackage/p1/**&quot; /&gt;
&lt;include name=&quot;mypackage/p2/**&quot; /&gt;
&lt;exclude name=&quot;mypackage/p1/testpackage/**&quot; /&gt;
&lt;/javac&gt;</pre>



Loading…
Cancel
Save