ExampleTo extend And processing,
first place your extensions in an Ant project file within your plug-in,
such as myAntStuff.xml. Next, create
a small wrapper file myAntStuffWrapper.xml in
the same directory:
<dummy> <import file="myAntStuff.xml"/> </dummy>Then
create the following feature:
<plugin id="com.example.ant">
<feature extension="dita.conductor.target.relative" file="myAntStuffWrapper.xml"/>
</plugin>When the plug-in is integrated, the imports
from myAntStuffWrapper.xml will be copied into build.xml (using
the correct path). This makes targets in myAntStuff.xml available
to any other processing.