| <?xml version='1.0' encoding='UTF-8'?> |
| <!-- Schema file written by PDE --> |
| <schema targetNamespace="org.eclipse.ant.core"> |
| <annotation> |
| <appInfo> |
| <meta.schema plugin="org.eclipse.ant.core" id="extraClasspathEntries" name="Extra Ant Classpath Entries"/> |
| </appInfo> |
| <documentation> |
| Allows plug-ins to define arbitrary JARs for use by the Ant infrastructure. |
| These JARs are put into the Ant classpath at runtime. Besides |
| the JAR, the plug-in classloader of the plug-in providing the |
| JAR is also added to the classpath. |
| </documentation> |
| </annotation> |
| |
| <element name="extension"> |
| <complexType> |
| <sequence> |
| <element ref="extraClasspathEntry" minOccurs="0" maxOccurs="unbounded"/> |
| </sequence> |
| <attribute name="point" type="string" use="required"> |
| <annotation> |
| <documentation> |
| a fully qualified identifier of the target extension point |
| </documentation> |
| </annotation> |
| </attribute> |
| <attribute name="id" type="string"> |
| <annotation> |
| <documentation> |
| an optional identifier of the extension instance |
| </documentation> |
| </annotation> |
| </attribute> |
| <attribute name="name" type="string"> |
| <annotation> |
| <documentation> |
| an optional name of the extension instance |
| </documentation> |
| </annotation> |
| </attribute> |
| </complexType> |
| </element> |
| |
| <element name="extraClasspathEntry"> |
| <complexType> |
| <attribute name="library" type="string" use="required"> |
| <annotation> |
| <documentation> |
| a path relative to the plug-in install location for the library. |
| </documentation> |
| <appInfo> |
| <meta.attribute kind="resource"/> |
| </appInfo> |
| </annotation> |
| </attribute> |
| <attribute name="headless" type="boolean"> |
| <annotation> |
| <documentation> |
| indicates whether this extra classpath entry is suitable for use in a "headless" Ant environment. If running headless and the attribute is <code>false</code>, this entry will not be added to the Ant classpath. As well, the plugin class loader will not be added as a parent classloader to the Ant classloader. The implied value is <code>true</code>, when not specified. |
| </documentation> |
| </annotation> |
| </attribute> |
| <attribute name="eclipseRuntime" type="boolean"> |
| <annotation> |
| <documentation> |
| indicates whether this extra classpath entry should only be considered for builds run in the same VM as Eclipse. The implied value is true, when not specified. |
| </documentation> |
| </annotation> |
| </attribute> |
| </complexType> |
| </element> |
| |
| <annotation> |
| <appInfo> |
| <meta.section type="examples"/> |
| </appInfo> |
| <documentation> |
| The following is an example of an extra classpath entries extension point: |
| |
| <p> |
| <pre> |
| <extension point="org.eclipse.ant.core.extraClasspathEntries"> |
| <extraClasspathEntry library="myExtraLibrary.jar"/> |
| </extension> |
| </pre> |
| </p> |
| </documentation> |
| </annotation> |
| |
| <annotation> |
| <appInfo> |
| <meta.section type="implementation"/> |
| </appInfo> |
| <documentation> |
| The platform itself supplies an Ant support jar (antsupportlib.jar). |
| </documentation> |
| </annotation> |
| |
| <annotation> |
| <appInfo> |
| <meta.section type="copyright"/> |
| </appInfo> |
| <documentation> |
| Copyright (c) 2000, 2005 IBM Corporation and others.<br> |
| |
| This program and the accompanying materials are made |
| available under the terms of the Eclipse Public License 2.0 which |
| accompanies this distribution, and is available at |
| <a href="https://www.eclipse.org/legal/epl-2.0">https://www.eclipse.org/legal/epl-v20.html</a>/ |
| |
| SPDX-License-Identifier: EPL-2.0 |
| </documentation> |
| </annotation> |
| |
| </schema> |