|
|
|
@@ -664,7 +664,7 @@ They are: |
|
|
|
If you do not want these default excludes applied, you may disable them with the |
|
|
|
<code>defaultexcludes="no"</code> attribute.</p> |
|
|
|
<h3><a name="patternset">PatternSets</a></h3> |
|
|
|
<p>Patterns can be group to sets and later be referenced by their id |
|
|
|
<p>Patterns can be grouped to sets and later be referenced by their id |
|
|
|
attribute. They are defined via a <code>patternset</code> element - |
|
|
|
which can currently only appear nested into a <a |
|
|
|
href="#fileset">FileSet</a> or a directory based task that constitutes |
|
|
|
@@ -4414,7 +4414,8 @@ main: |
|
|
|
|
|
|
|
BUILD SUCCESSFUL |
|
|
|
</pre></blockquote> |
|
|
|
<p>Another example, using <a href="#references">references by id</a>.</p> |
|
|
|
<p>Another example, using <a href="#references">references by id</a> |
|
|
|
and two different scripting languages:</p> |
|
|
|
<blockquote><pre> |
|
|
|
<project name="testscript" default="main"> |
|
|
|
<target name="sub"> |
|
|
|
@@ -4422,9 +4423,9 @@ BUILD SUCCESSFUL |
|
|
|
</target> |
|
|
|
|
|
|
|
<target name="sub1"> |
|
|
|
<script language="javascript"><![CDATA[ |
|
|
|
theEcho.setMessage("In sub1"); |
|
|
|
sub.execute(); |
|
|
|
<script language="netrexx"><![CDATA[ |
|
|
|
theEcho.setMessage("In sub1") |
|
|
|
sub.execute |
|
|
|
]]></script> |
|
|
|
</target> |
|
|
|
|
|
|
|
|