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 @@ + + + +
+ + +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
+ +Attribute | +Description | +Required | +
targets | +a comma separated list of target names to bind. | +Yes | +
extensionPoint | +the name of the extension point to bind the targets to. | +Yes | +
onMissingExtensionPoint | +What to do if this target tries to extend a missing + extension-point. ("fail", + "warn", "ignore"). | +No. Defaults to fail |
+
+ + ++<bindtargets targets="build-jar,build-src-jar" extensionPoint="dist"/> +