IMPROVEMENT: ivy:resolve ant task does not support "branch" attribute (IVY-1035)

git-svn-id: https://svn.apache.org/repos/asf/ant/ivy/core/trunk@749743 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Maarten Coene 2009-03-03 20:46:05 +00:00
parent 1b6128f59f
commit 5fa61ba9dc
2 changed files with 3 additions and 0 deletions

View File

@ -63,6 +63,7 @@ The attributes listed are then mostly used only if a resolve is triggered automa
<tr><td>organisation</td><td>the organisation of the module to retrieve. This usually doesn't need to be set since it defaults to the last resolved one, except for inline mode where it is required.</td><td>Yes in inline mode, otherwise no, it then defaults to last resolved module name</td></tr>
<tr><td>module</td><td>the name of the module to retrieve. This usually doesn't need to be set since it defaults to the last resolved one, except for inline mode where it is required.</td><td>Yes in inline mode, otherwise no, it then defaults to last resolved module name</td></tr>
<tr><td>revision</td><td>the revision constraint of the module to retrieve. Used only in inline mode. <span class="since">since 1.4</span></td><td>No. Defaults to latest.integration</td></tr>
<tr><td>branch</td><td>the name of the branch to resolve in inline mode <span class="since">(since 2.0.1)</span></td><td>Defaults to no branch in inline mode, nothing in standard mode.</td></tr>
<tr><td>transitive</td><td>true to resolve dependencies transitively, false otherwise <span class="since">since 1.4</span></td><td>No. Defaults to true</td></tr>
<tr><td>haltonfailure</td><td>true to halt the build on ivy failure, false to continue</td><td>No. Defaults to true</td></tr>
<tr><td>validate</td><td>true to force ivy files validation against ivy.xsd, false to force no validation</td><td>No. Defaults to default ivy value (as configured in configuration file)</td></tr>

View File

@ -127,6 +127,8 @@ After the call to this task, a reference to the module descriptor resolved is pu
<tr><td>revision</td><td>the revision constraint to apply to the module to resolve in inline mode <span class="since">since 1.4</span></td><td>No. Defaults to "latest.integration" in inline mode, nothing in standard mode.</td></tr>
<tr><td>branch</td><td>the name of the branch to resolve in inline mode <span class="since">(since 2.0.1)</span></td><td>Defaults to no branch in inline mode, nothing in standard mode.</td></tr>
<tr><td>type</td><td>comma separated list of accepted artifact types (<span class="since">since 1.2</span>)</td><td>No. defaults to ${ivy.resolve.default.type.filter}</td></tr>
<tr><td>haltonfailure</td><td>true to halt the build on ivy failure, false to continue</td><td>No. Defaults to true</td></tr>