Extra Ant Classpath Entries

Identifier:
org.eclipse.ant.core.extraClasspathEntries

Description:
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.

Configuration Markup:

<!ELEMENT extension (extraClasspathEntry*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT extraClasspathEntry EMPTY>

<!ATTLIST extraClasspathEntry

library        CDATA #REQUIRED

headless       (true | false)

eclipseRuntime (true | false) >


Examples:
The following is an example of an extra classpath entries extension point:


 <extension point="org.eclipse.ant.core.extraClasspathEntries">
  <extraClasspathEntry library="myExtraLibrary.jar"/>
 </extension>

Supplied Implementation:
The platform itself supplies an Ant support jar (antsupportlib.jar).


Copyright (c) 2000, 2005 IBM Corporation and others.
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 https://www.eclipse.org/legal/epl-v20.html/ SPDX-License-Identifier: EPL-2.0