blob: 60798ffb34684bd3b6687cd457f7204f65f6cdc6 [file] [log] [blame]
<?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 &quot;headless&quot; Ant environment. If running headless and the attribute is &quot;false&quot;,
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 true, 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:
&lt;p&gt;
&lt;pre&gt;
&lt;extension point=&quot;org.eclipse.ant.core.extraClasspathEntries&quot;&gt;
&lt;extraClasspathEntry library=&quot;myExtraLibrary.jar&quot;/&gt;
&lt;/extension&gt;
&lt;/pre&gt;
&lt;/p&gt;
</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>
&lt;a href=&quot;hglegal.htm&quot;&gt;&lt;img SRC=&quot;ngibmcpy.gif&quot; ALT=&quot;Copyright IBM Corp. 2000, 2003. All Rights Reserved.&quot; BORDER=0 height=14 width=324&gt;&lt;/a&gt;
</documentation>
</annotation>
</schema>