From 0ac1625a8b6e23501cf724de76b3bfd7193a1c77 Mon Sep 17 00:00:00 2001 From: Nicolas Lalevee Date: Tue, 9 Nov 2010 16:33:24 +0000 Subject: [PATCH] I forgot to commit the doc about the bindtargets tasks git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1033070 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/Tasks/bindtargets.html | 71 ++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 docs/manual/Tasks/bindtargets.html diff --git a/docs/manual/Tasks/bindtargets.html b/docs/manual/Tasks/bindtargets.html new file mode 100644 index 000000000..fdd7c5dae --- /dev/null +++ b/docs/manual/Tasks/bindtargets.html @@ -0,0 +1,71 @@ + + + + + + +Bindtargets Task + + + + +

Bindtargets

+

Description

+ +

Make some target the extension of some defined +extension point. It will make the +list of targets dependencies of the extension point.

+ +

The bindtargets task may only be used as a top-level task. This means that +it may not be used in a target.

+ +

Since Ant 1.8.2

+ +

Parameters

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
targetsa comma separated list of target names to bind.Yes
extensionPointthe name of the extension point to bind the targets to.Yes
onMissingExtensionPointWhat to do if this target tries to extend a missing + extension-point. ("fail", + "warn", "ignore").No. Defaults to fail
+ +

Examples

+
+<bindtargets targets="build-jar,build-src-jar" extensionPoint="dist"/>
+
+ + +