From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../manual/Tasks/jarlib-available.html | 134 --------------------- 1 file changed, 134 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/jarlib-available.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/jarlib-available.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/jarlib-available.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/jarlib-available.html deleted file mode 100644 index adb732f0..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/jarlib-available.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - -jarlib-available Task - - - - -

jarlib-available

-

Description

-

Check whether an extension is present in a fileset or an extensionSet. -If the extension is present then a property is set.

- -

Note that this task -works with extensions as defined by the "Optional Package" specification. - For more information about optional packages, see the document -Optional Package Versioning in the documentation bundle for your -Java Standard Edition package, in file -guide/extensions/versioning.html or the online - -Extension and ExtensionSet documentation for further details

- -

Parameters

- - - - - - - - - - - - - - - - -
AttributeDescriptionRequired
propertyThe name of property to set if extensions is available.Yes
fileThe file to check for extensionNo, one of file, nested - ExtensionSet or nested fileset must be present.
-

Parameters specified as nested elements

- -

extension

-

Extension the extension - to search for.

- -

fileset

-

FileSets are used to select -sets of files to check for extension.

- -

extensionSet

-

ExtensionSets is the set - of extensions to search for extension in.

- -

Examples

-

Search for extension in single file

-
-  <jarlib-available property="myext.present" file="myfile.jar">
-    <extension
-      extensionName="org.apache.tools.ant"
-      specificationVersion="1.4.9"
-      specificationVendor="Apache Software Foundation"/>
-  </jarlib-available>
-
- -

Search for extension in single file referencing external Extension

-
-  <extension id="myext"
-    extensionName="org.apache.tools.ant"
-    specificationVersion="1.4.9"
-    specificationVendor="Apache Software Foundation"/>
-
-  <jarlib-available property="myext.present" file="myfile.jar">
-    <extension refid="myext"/>
-  </jarlib-available>
-
-

Search for extension in fileset

-
-  <extension id="myext"
-    extensionName="org.apache.tools.ant"
-    specificationVersion="1.4.9"
-    specificationVendor="Apache Software Foundation"/>
-
-  <jarlib-available property="myext.present">
-    <extension refid="myext"/>
-    <fileset dir="lib">
-      <include name="*.jar"/>
-    </fileset>
-  </jarlib-available>
-
-

Search for extension in extensionSet

-
-  <extension id="myext"
-    extensionName="org.apache.tools.ant"
-    specificationVersion="1.4.9"
-    specificationVendor="Apache Software Foundation"/>
-
-  <jarlib-available property="myext.present">
-    <extension refid="myext"/>
-    <extensionSet id="exts3">
-      <libfileset
-        includeUrl="false"
-        includeImpl="true"
-        dir="lib">
-        <include name="*.jar"/>
-      </libfileset>
-    </extensionSet>
-  </jarlib-available>
-
- - - - - - -- cgit