AntTasks

Identifier: org.eclipse.ant.core.antTasks

Description: Allows plug-ins to define arbitrary Ant tasks for use by the Ant infrastructure.  The standard Ant infrastructure allows for the addition of arbitrary tasks.  Unfortunately, it is unlikely that the Ant Core plug-in would have the classes required by these tasks on its classpath (or that of any of its prerequisites).  To address this, clients should define an extension which plugs into this extension-point and maps a task name onto a class.  The Ant plug-in can then request that the declaring plug-in load the specified class.

Configuration Markup: 

   <!ELEMENT antTask EMPTY>
   <!ATTLIST antTask
      name           CDATA #REQUIRED
      class          CDATA #REQUIRED
   >

Examples: The following is an example of an object declaration:

   <extension point="org.eclipse.ant.core.antTask">
      <antTask name="coolTask" class="com.example.CoolTask"/>
   </extension>

API Information: The objects declared via this extension-point are accessible though the following API:

   org.eclipse.core.ant.AntPlugin.getTaskExtensions

Supplied Implementation: The platform itself supplies a number of tasks including incremental, javac and refreshLocal.

Copyright IBM Corp. 2000, 2001.  All Rights Reserved.