org.eclipse.ant.core/schema/extraClasspathEntries.exsd

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.17 - (download) (annotate)
Tue Jun 14 19:25:03 2005 UTC (4 years, 5 months ago) by darins
Branch: MAIN
CVS Tags: v20091118, v20060531, v20060925, v20080509, r311_v20050913, v20090505, v20081124, v20060803, v20070511, r311_V20050901, R3_3_1_1, v20060220, v20060227, I20060605-1430, v20060130, R3_2_1, R3_2_2, v20070426, v20091109, v20060403, v20080514-1542, v20090112-1500, v20090511, v20090706, v20080128, v20091028_r34x_264388, v20071004, v20060330, v20060123, v20080512-1620, v20060410, v20060411, v20060412, v20090817, v20090520, v20090504, v20090203, v20050815, v20051107, v20050616, v20061023, v20090320, v20090323, v20060329, v20060326, v20060327, v20060320, R3_4, R3_5, R3_1, R3_2, R3_3, v20080908, v20081117, v20080319, v20080318, v20051205, v20060313, v20070315, v20070312, v20070128, pre_R3_3, v20070318, v20070416, v20091109_r342, v20080707, v20091012, v20090428, v20090429, v20081201, v20050616b, v20080425, v20080721, v20051121, v20080303, v20080508-1600, v20060306, v20070409, v20091110_r342, v20060116, v20091109_r352, v20091008-1330, v20090413, v20080630, v20060918, v20081103, v20070522, v20091110_r352, v20070729, v20060511, v20060510, v20080818, v20090817_r351, v20060109, v20090406, v20060613, v20071212, v20060904, v20051030, v20060821, R3_1_1, v20050919, R3_5_1, v20080529, v20070227, v20070423, R3_3_1, R3_3_2, v20061211, v20060206, v20060502, R3_1_2, v20051003, R3_4_2, R3_4_1, v20060425, v20070110, v20060328, v20070219, v20051011, v20060216, v20070826, v20060212, v20060213, v20060210, HEAD
Branch point for: R3_1_maintenance, R3_4_maintenance, R3_5_maintenance
Changes since 1.16: +2 -2 lines
Change from Common Public license to Eclipse Public License
<?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 &lt;code&gt;false&lt;/code&gt;, 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 &lt;code&gt;true&lt;/code&gt;, 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>
           Copyright (c) 2000, 2005 IBM Corporation and others.&lt;br&gt;
All rights reserved. This program and the accompanying materials are made 
available under the terms of the Eclipse Public License v1.0 which 
accompanies this distribution, and is available at 
&lt;a href=&quot;http://www.eclipse.org/legal/epl-v10.html&quot;&gt;http://www.eclipse.org/legal/epl-v10.html&lt;/a&gt;
      </documentation>
   </annotation>

</schema>