The Apache Antࡊ Libraries Subproject
+The Apache Ant™ Libraries Subproject
The Apache Ant Libraries Subproject
diff --git a/docs/antlibs/proper.html b/docs/antlibs/proper.html
index 832e3047d..18a17fb7c 100644
--- a/docs/antlibs/proper.html
+++ b/docs/antlibs/proper.html
@@ -21,7 +21,7 @@
- Apache Ant - Apache Antࡊ Libraries
+ Apache Ant - Apache Ant™ Libraries
@@ -163,15 +163,15 @@
- Apache Antࡊ Libraries
+ Apache Ant™ Libraries
Apache Ant Libraries
-
- Apache AntUnitࡊ - Unit Test Framework for Ant Tasks
+
+ Apache AntUnit™ - Unit Test Framework for Ant Tasks
Apache AntUnit borrows ideas from JUnit 3.x and the <junit>
task. It provides a task that runs build files as unit tests
@@ -251,8 +251,8 @@
-
- Apache Compress Antlibࡊ
+
+ Apache Compress Antlib™
The Apache Compress Antlib offers tasks and types for additional
archive formats like CPIO and AR supported
diff --git a/docs/antlibs/props/index.html b/docs/antlibs/props/index.html
index 1c72cf74f..dd751801d 100644
--- a/docs/antlibs/props/index.html
+++ b/docs/antlibs/props/index.html
@@ -165,8 +165,8 @@
Apache Props Antlib
-
- Apache Props Antlibࡊ
+
+ Apache Props Antlib™
This is a library of supplementary handlers for Apache Ant
properties resolution.
diff --git a/docs/antlibs/sandbox.html b/docs/antlibs/sandbox.html
index 998b09083..d1faf88af 100644
--- a/docs/antlibs/sandbox.html
+++ b/docs/antlibs/sandbox.html
@@ -21,7 +21,7 @@
- Apache Ant - Apache Antࡊ Libraries - The Sandbox
+ Apache Ant - Apache Ant™ Libraries - The Sandbox
@@ -163,7 +163,7 @@
- Apache Antࡊ Libraries - The Sandbox
+ Apache Ant™ Libraries - The Sandbox
Apache Ant Libraries - The Sandbox
diff --git a/docs/antnews.html b/docs/antnews.html
index d587bec5e..1d5d64a9c 100644
--- a/docs/antnews.html
+++ b/docs/antnews.html
@@ -21,7 +21,7 @@
- Apache Ant - Apache Antࡊ Project News
+ Apache Ant - Apache Ant™ Project News
@@ -206,7 +206,7 @@
- Apache Antࡊ Project News
+ Apache Ant™ Project News
Apache Ant 1.8.1
diff --git a/docs/bylaws.html b/docs/bylaws.html
index 866d71b65..3ef36a230 100644
--- a/docs/bylaws.html
+++ b/docs/bylaws.html
@@ -202,8 +202,8 @@
Project Bylaws
-
- Apache Antࡊ Project Bylaws
+
+ Apache Ant™ Project Bylaws
This document defines the bylaws under which the Apache Ant project
diff --git a/docs/manual/Tasks/bindtargets.html b/docs/manual/Tasks/bindtargets.html
index d8374a49c..9fb81b442 100644
--- a/docs/manual/Tasks/bindtargets.html
+++ b/docs/manual/Tasks/bindtargets.html
@@ -1,92 +1,92 @@
-
-
-
-
-
-
-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.
-
-This target is useful when you want to have a target participate to another
-build workflow, build workflow which explicitly expose an extension point for
-that kind of insertion. But the target to bind and the extension point to
-bind to are both declared in some imported build files. Modifying directly the
-target dependency graph of these external build files may have a side effect
-on some other project which import them. This task helps then to modify the
-target dependencies but only in your context.
-
-
-Note: this task is quite equivalent to the definition of an intermediate
-target which will be the bridge between the target to bind and the extension
-point. For instance:
-
-<bindtargets targets="jar,javadoc" extensionPoint="dist" />
-is quite equivalent to:
-<target name="bind-to-dist" depends="jar,javadoc" extensionOf="dist" />
-
-This task basically avoid the creation of a target.
-
-
-The bindtargets task may only be used as a top-level task. This means that
-it may not be used in a target. This is making the target dependency graph static
-and predictable as soon as every build file is loaded.
-
-Since Apache Ant 1.8.2
-
-Parameters
-
-
- 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
-
-
-
-Examples
-
-<bindtargets targets="build-jar,build-src-jar" extensionPoint="dist" />
-
-
-
-
+
+
+
+
+
+
+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.
+
+This target is useful when you want to have a target participate to another
+build workflow, build workflow which explicitly expose an extension point for
+that kind of insertion. But the target to bind and the extension point to
+bind to are both declared in some imported build files. Modifying directly the
+target dependency graph of these external build files may have a side effect
+on some other project which import them. This task helps then to modify the
+target dependencies but only in your context.
+
+
+Note: this task is quite equivalent to the definition of an intermediate
+target which will be the bridge between the target to bind and the extension
+point. For instance:
+
+<bindtargets targets="jar,javadoc" extensionPoint="dist" />
+is quite equivalent to:
+<target name="bind-to-dist" depends="jar,javadoc" extensionOf="dist" />
+
+This task basically avoid the creation of a target.
+
+
+The bindtargets task may only be used as a top-level task. This means that
+it may not be used in a target. This is making the target dependency graph static
+and predictable as soon as every build file is loaded.
+
+Since Apache Ant 1.8.2
+
+Parameters
+
+
+ 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
+
+
+
+Examples
+
+<bindtargets targets="build-jar,build-src-jar" extensionPoint="dist" />
+
+
+
+
diff --git a/docs/manualdownload.html b/docs/manualdownload.html
index cc0d1cb11..a00c6f943 100644
--- a/docs/manualdownload.html
+++ b/docs/manualdownload.html
@@ -200,8 +200,8 @@
Ant Manual Distributions
-
- Downloading Apache Antࡊ's Manual
+
+ Downloading Apache Ant™'s Manual
Apache Ant's manual is part of the binary distribution but is also
available as a stand-alone download.
diff --git a/docs/mission.html b/docs/mission.html
index 432e812f1..500be78e3 100644
--- a/docs/mission.html
+++ b/docs/mission.html
@@ -21,7 +21,7 @@
- Apache Ant - Apache Antࡊ Mission
+ Apache Ant - Apache Ant™ Mission
@@ -200,7 +200,7 @@
- Apache Antࡊ Mission
+ Apache Ant™ Mission
Board Resolution
diff --git a/docs/resources.html b/docs/resources.html
index 75aa13023..c3b8aff74 100644
--- a/docs/resources.html
+++ b/docs/resources.html
@@ -204,8 +204,8 @@
FAQs
-
- At Apache Antࡊ's website
+
+ At Apache Ant™'s website
Starting with the release of Apache Ant 1.4 the Ant's FAQ is
bundled with the distribution, the most recent version can
diff --git a/xdocs/antlibs/index.xml b/xdocs/antlibs/index.xml
index 8ffcc6d01..9952a2070 100644
--- a/xdocs/antlibs/index.xml
+++ b/xdocs/antlibs/index.xml
@@ -19,7 +19,7 @@
- The Apache Antࡊ Libraries Subproject
+ The Apache Ant™ Libraries Subproject
diff --git a/xdocs/antlibs/proper.xml b/xdocs/antlibs/proper.xml
index 126256de1..bc1bbd54f 100644
--- a/xdocs/antlibs/proper.xml
+++ b/xdocs/antlibs/proper.xml
@@ -19,7 +19,7 @@
- Apache Antࡊ Libraries
+ Apache Ant™ Libraries
@@ -27,7 +27,7 @@
-
+
Apache AntUnit borrows ideas from JUnit 3.x and the <junit>
task. It provides a task that runs build files as unit tests
@@ -67,7 +67,7 @@
-
+
Apache Antࡊ Libraries
+Apache Ant™ Libraries
Apache Ant Libraries
- - Apache AntUnitࡊ - Unit Test Framework for Ant Tasks + + Apache AntUnit™ - Unit Test Framework for Ant Tasks
Apache AntUnit borrows ideas from JUnit 3.x and the <junit> task. It provides a task that runs build files as unit tests @@ -251,8 +251,8 @@
- - Apache Compress Antlibࡊ + + Apache Compress Antlib™
The Apache Compress Antlib offers tasks and types for additional archive formats like CPIO and AR supported diff --git a/docs/antlibs/props/index.html b/docs/antlibs/props/index.html index 1c72cf74f..dd751801d 100644 --- a/docs/antlibs/props/index.html +++ b/docs/antlibs/props/index.html @@ -165,8 +165,8 @@
Apache Props Antlib
- - Apache Props Antlibࡊ + + Apache Props Antlib™
This is a library of supplementary handlers for Apache Ant properties resolution.
diff --git a/docs/antlibs/sandbox.html b/docs/antlibs/sandbox.html index 998b09083..d1faf88af 100644 --- a/docs/antlibs/sandbox.html +++ b/docs/antlibs/sandbox.html @@ -21,7 +21,7 @@ -Apache Antࡊ Libraries - The Sandbox
+Apache Ant™ Libraries - The Sandbox
Apache Ant Libraries - The Sandbox
diff --git a/docs/antnews.html b/docs/antnews.html
index d587bec5e..1d5d64a9c 100644
--- a/docs/antnews.html
+++ b/docs/antnews.html
@@ -21,7 +21,7 @@
- Apache Ant - Apache Antࡊ Project News
+ Apache Ant - Apache Ant™ Project News
@@ -206,7 +206,7 @@
- Apache Antࡊ Project News
+ Apache Ant™ Project News
Apache Ant 1.8.1
diff --git a/docs/bylaws.html b/docs/bylaws.html
index 866d71b65..3ef36a230 100644
--- a/docs/bylaws.html
+++ b/docs/bylaws.html
@@ -202,8 +202,8 @@
Project Bylaws
-
- Apache Antࡊ Project Bylaws
+
+ Apache Ant™ Project Bylaws
This document defines the bylaws under which the Apache Ant project
diff --git a/docs/manual/Tasks/bindtargets.html b/docs/manual/Tasks/bindtargets.html
index d8374a49c..9fb81b442 100644
--- a/docs/manual/Tasks/bindtargets.html
+++ b/docs/manual/Tasks/bindtargets.html
@@ -1,92 +1,92 @@
-
-
-
-
-
-
-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.
-
-This target is useful when you want to have a target participate to another
-build workflow, build workflow which explicitly expose an extension point for
-that kind of insertion. But the target to bind and the extension point to
-bind to are both declared in some imported build files. Modifying directly the
-target dependency graph of these external build files may have a side effect
-on some other project which import them. This task helps then to modify the
-target dependencies but only in your context.
-
-
-Note: this task is quite equivalent to the definition of an intermediate
-target which will be the bridge between the target to bind and the extension
-point. For instance:
-
-<bindtargets targets="jar,javadoc" extensionPoint="dist" />
-is quite equivalent to:
-<target name="bind-to-dist" depends="jar,javadoc" extensionOf="dist" />
-
-This task basically avoid the creation of a target.
-
-
-The bindtargets task may only be used as a top-level task. This means that
-it may not be used in a target. This is making the target dependency graph static
-and predictable as soon as every build file is loaded.
-
-Since Apache Ant 1.8.2
-
-Parameters
-
-
- 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
-
-
-
-Examples
-
-<bindtargets targets="build-jar,build-src-jar" extensionPoint="dist" />
-
-
-
-
+
+
+
+
+
+
+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.
+
+This target is useful when you want to have a target participate to another
+build workflow, build workflow which explicitly expose an extension point for
+that kind of insertion. But the target to bind and the extension point to
+bind to are both declared in some imported build files. Modifying directly the
+target dependency graph of these external build files may have a side effect
+on some other project which import them. This task helps then to modify the
+target dependencies but only in your context.
+
+
+Note: this task is quite equivalent to the definition of an intermediate
+target which will be the bridge between the target to bind and the extension
+point. For instance:
+
+<bindtargets targets="jar,javadoc" extensionPoint="dist" />
+is quite equivalent to:
+<target name="bind-to-dist" depends="jar,javadoc" extensionOf="dist" />
+
+This task basically avoid the creation of a target.
+
+
+The bindtargets task may only be used as a top-level task. This means that
+it may not be used in a target. This is making the target dependency graph static
+and predictable as soon as every build file is loaded.
+
+Since Apache Ant 1.8.2
+
+Parameters
+
+
+ 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
+
+
+
+Examples
+
+<bindtargets targets="build-jar,build-src-jar" extensionPoint="dist" />
+
+
+
+
diff --git a/docs/manualdownload.html b/docs/manualdownload.html
index cc0d1cb11..a00c6f943 100644
--- a/docs/manualdownload.html
+++ b/docs/manualdownload.html
@@ -200,8 +200,8 @@
Ant Manual Distributions
-
- Downloading Apache Antࡊ's Manual
+
+ Downloading Apache Ant™'s Manual
Apache Ant's manual is part of the binary distribution but is also
available as a stand-alone download.
diff --git a/docs/mission.html b/docs/mission.html
index 432e812f1..500be78e3 100644
--- a/docs/mission.html
+++ b/docs/mission.html
@@ -21,7 +21,7 @@
- Apache Ant - Apache Antࡊ Mission
+ Apache Ant - Apache Ant™ Mission
@@ -200,7 +200,7 @@
- Apache Antࡊ Mission
+ Apache Ant™ Mission
Board Resolution
diff --git a/docs/resources.html b/docs/resources.html
index 75aa13023..c3b8aff74 100644
--- a/docs/resources.html
+++ b/docs/resources.html
@@ -204,8 +204,8 @@
FAQs
-
- At Apache Antࡊ's website
+
+ At Apache Ant™'s website
Starting with the release of Apache Ant 1.4 the Ant's FAQ is
bundled with the distribution, the most recent version can
diff --git a/xdocs/antlibs/index.xml b/xdocs/antlibs/index.xml
index 8ffcc6d01..9952a2070 100644
--- a/xdocs/antlibs/index.xml
+++ b/xdocs/antlibs/index.xml
@@ -19,7 +19,7 @@
- The Apache Antࡊ Libraries Subproject
+ The Apache Ant™ Libraries Subproject
diff --git a/xdocs/antlibs/proper.xml b/xdocs/antlibs/proper.xml
index 126256de1..bc1bbd54f 100644
--- a/xdocs/antlibs/proper.xml
+++ b/xdocs/antlibs/proper.xml
@@ -19,7 +19,7 @@
- Apache Antࡊ Libraries
+ Apache Ant™ Libraries
@@ -27,7 +27,7 @@
-
+
Apache AntUnit borrows ideas from JUnit 3.x and the <junit>
task. It provides a task that runs build files as unit tests
@@ -67,7 +67,7 @@
-
+
Apache Antࡊ Project News
+Apache Ant™ Project News
Apache Ant 1.8.1
diff --git a/docs/bylaws.html b/docs/bylaws.html
index 866d71b65..3ef36a230 100644
--- a/docs/bylaws.html
+++ b/docs/bylaws.html
@@ -202,8 +202,8 @@
Project Bylaws
-
- Apache Antࡊ Project Bylaws
+
+ Apache Ant™ Project Bylaws
This document defines the bylaws under which the Apache Ant project
diff --git a/docs/manual/Tasks/bindtargets.html b/docs/manual/Tasks/bindtargets.html
index d8374a49c..9fb81b442 100644
--- a/docs/manual/Tasks/bindtargets.html
+++ b/docs/manual/Tasks/bindtargets.html
@@ -1,92 +1,92 @@
-
-
-
-
-
-
-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.
-
-This target is useful when you want to have a target participate to another
-build workflow, build workflow which explicitly expose an extension point for
-that kind of insertion. But the target to bind and the extension point to
-bind to are both declared in some imported build files. Modifying directly the
-target dependency graph of these external build files may have a side effect
-on some other project which import them. This task helps then to modify the
-target dependencies but only in your context.
-
-
-Note: this task is quite equivalent to the definition of an intermediate
-target which will be the bridge between the target to bind and the extension
-point. For instance:
-
-<bindtargets targets="jar,javadoc" extensionPoint="dist" />
-is quite equivalent to:
-<target name="bind-to-dist" depends="jar,javadoc" extensionOf="dist" />
-
-This task basically avoid the creation of a target.
-
-
-The bindtargets task may only be used as a top-level task. This means that
-it may not be used in a target. This is making the target dependency graph static
-and predictable as soon as every build file is loaded.
-
-Since Apache Ant 1.8.2
-
-Parameters
-
-
- 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
-
-
-
-Examples
-
-<bindtargets targets="build-jar,build-src-jar" extensionPoint="dist" />
-
-
-
-
+
+
+
+
+
+
+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.
+
+This target is useful when you want to have a target participate to another
+build workflow, build workflow which explicitly expose an extension point for
+that kind of insertion. But the target to bind and the extension point to
+bind to are both declared in some imported build files. Modifying directly the
+target dependency graph of these external build files may have a side effect
+on some other project which import them. This task helps then to modify the
+target dependencies but only in your context.
+
+
+Note: this task is quite equivalent to the definition of an intermediate
+target which will be the bridge between the target to bind and the extension
+point. For instance:
+
+<bindtargets targets="jar,javadoc" extensionPoint="dist" />
+is quite equivalent to:
+<target name="bind-to-dist" depends="jar,javadoc" extensionOf="dist" />
+
+This task basically avoid the creation of a target.
+
+
+The bindtargets task may only be used as a top-level task. This means that
+it may not be used in a target. This is making the target dependency graph static
+and predictable as soon as every build file is loaded.
+
+Since Apache Ant 1.8.2
+
+Parameters
+
+
+ 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
+
+
+
+Examples
+
+<bindtargets targets="build-jar,build-src-jar" extensionPoint="dist" />
+
+
+
+
diff --git a/docs/manualdownload.html b/docs/manualdownload.html
index cc0d1cb11..a00c6f943 100644
--- a/docs/manualdownload.html
+++ b/docs/manualdownload.html
@@ -200,8 +200,8 @@
Ant Manual Distributions
-
- Downloading Apache Antࡊ's Manual
+
+ Downloading Apache Ant™'s Manual
Apache Ant's manual is part of the binary distribution but is also
available as a stand-alone download.
diff --git a/docs/mission.html b/docs/mission.html
index 432e812f1..500be78e3 100644
--- a/docs/mission.html
+++ b/docs/mission.html
@@ -21,7 +21,7 @@
- Apache Ant - Apache Antࡊ Mission
+ Apache Ant - Apache Ant™ Mission
@@ -200,7 +200,7 @@
- Apache Antࡊ Mission
+ Apache Ant™ Mission
Board Resolution
diff --git a/docs/resources.html b/docs/resources.html
index 75aa13023..c3b8aff74 100644
--- a/docs/resources.html
+++ b/docs/resources.html
@@ -204,8 +204,8 @@
FAQs
-
- At Apache Antࡊ's website
+
+ At Apache Ant™'s website
Starting with the release of Apache Ant 1.4 the Ant's FAQ is
bundled with the distribution, the most recent version can
diff --git a/xdocs/antlibs/index.xml b/xdocs/antlibs/index.xml
index 8ffcc6d01..9952a2070 100644
--- a/xdocs/antlibs/index.xml
+++ b/xdocs/antlibs/index.xml
@@ -19,7 +19,7 @@
- The Apache Antࡊ Libraries Subproject
+ The Apache Ant™ Libraries Subproject
diff --git a/xdocs/antlibs/proper.xml b/xdocs/antlibs/proper.xml
index 126256de1..bc1bbd54f 100644
--- a/xdocs/antlibs/proper.xml
+++ b/xdocs/antlibs/proper.xml
@@ -19,7 +19,7 @@
- Apache Antࡊ Libraries
+ Apache Ant™ Libraries
@@ -27,7 +27,7 @@
-
+
Apache AntUnit borrows ideas from JUnit 3.x and the <junit>
task. It provides a task that runs build files as unit tests
@@ -67,7 +67,7 @@
-
+
Project Bylaws
- - Apache Antࡊ Project Bylaws + + Apache Ant™ Project Bylaws
This document defines the bylaws under which the Apache Ant project diff --git a/docs/manual/Tasks/bindtargets.html b/docs/manual/Tasks/bindtargets.html index d8374a49c..9fb81b442 100644 --- a/docs/manual/Tasks/bindtargets.html +++ b/docs/manual/Tasks/bindtargets.html @@ -1,92 +1,92 @@ - - - -
- - -Bindtargets
-Description
- -Make some target the extension of some defined -extension point. It will make the -list of targets dependencies of the extension point.
- -This target is useful when you want to have a target participate to another -build workflow, build workflow which explicitly expose an extension point for -that kind of insertion. But the target to bind and the extension point to -bind to are both declared in some imported build files. Modifying directly the -target dependency graph of these external build files may have a side effect -on some other project which import them. This task helps then to modify the -target dependencies but only in your context. -
- -Note: this task is quite equivalent to the definition of an intermediate -target which will be the bridge between the target to bind and the extension -point. For instance: -
--is quite equivalent to: -<bindtargets targets="jar,javadoc" extensionPoint="dist" />
-<target name="bind-to-dist" depends="jar,javadoc" extensionOf="dist" />
-This task basically avoid the creation of a target. -
- -The bindtargets task may only be used as a top-level task. This means that -it may not be used in a target. This is making the target dependency graph static -and predictable as soon as every build file is loaded.
- -Since Apache Ant 1.8.2
- -Parameters
-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 |
-
Examples
-- - - + + + + + + +-<bindtargets targets="build-jar,build-src-jar" extensionPoint="dist" /> -
Bindtargets
+Description
+ +Make some target the extension of some defined +extension point. It will make the +list of targets dependencies of the extension point.
+ +This target is useful when you want to have a target participate to another +build workflow, build workflow which explicitly expose an extension point for +that kind of insertion. But the target to bind and the extension point to +bind to are both declared in some imported build files. Modifying directly the +target dependency graph of these external build files may have a side effect +on some other project which import them. This task helps then to modify the +target dependencies but only in your context. +
+ +Note: this task is quite equivalent to the definition of an intermediate +target which will be the bridge between the target to bind and the extension +point. For instance: +
++is quite equivalent to: +<bindtargets targets="jar,javadoc" extensionPoint="dist" />
+<target name="bind-to-dist" depends="jar,javadoc" extensionOf="dist" />
+This task basically avoid the creation of a target. +
+ +The bindtargets task may only be used as a top-level task. This means that +it may not be used in a target. This is making the target dependency graph static +and predictable as soon as every build file is loaded.
+ +Since Apache Ant 1.8.2
+ +Parameters
+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 |
+
Examples
++ + + diff --git a/docs/manualdownload.html b/docs/manualdownload.html index cc0d1cb11..a00c6f943 100644 --- a/docs/manualdownload.html +++ b/docs/manualdownload.html @@ -200,8 +200,8 @@+<bindtargets targets="build-jar,build-src-jar" extensionPoint="dist" /> +
Ant Manual Distributions
- - Downloading Apache Antࡊ's Manual + + Downloading Apache Ant™'s Manual
Apache Ant's manual is part of the binary distribution but is also available as a stand-alone download.
diff --git a/docs/mission.html b/docs/mission.html index 432e812f1..500be78e3 100644 --- a/docs/mission.html +++ b/docs/mission.html @@ -21,7 +21,7 @@ -Apache Antࡊ Mission
+Apache Ant™ Mission
Board Resolution diff --git a/docs/resources.html b/docs/resources.html index 75aa13023..c3b8aff74 100644 --- a/docs/resources.html +++ b/docs/resources.html @@ -204,8 +204,8 @@ FAQs
- - At Apache Antࡊ's website + + At Apache Ant™'s website
Starting with the release of Apache Ant 1.4 the Ant's FAQ is
bundled with the distribution, the most recent version can
diff --git a/xdocs/antlibs/index.xml b/xdocs/antlibs/index.xml
index 8ffcc6d01..9952a2070 100644
--- a/xdocs/antlibs/index.xml
+++ b/xdocs/antlibs/index.xml
@@ -19,7 +19,7 @@
Apache AntUnit borrows ideas from JUnit 3.x and the <junit> task. It provides a task that runs build files as unit tests @@ -67,7 +67,7 @@