Adding an Ant target to the pre-processing pipeline
You can add an Ant target to the pre-processing pipeline. This enables you to insert additional processing before or after the pre-processing chain or a specific step in the pre-processing operation.
About this task
You can use the depend.preprocess.pre and depend.preprocess.post extension
        points to run a target before or after the entire pre-processing operation. In addition, there are extension
        points that enable you to run an Ant target before specific pre-processing steps.
Procedure
Results
Example
The following plugin.xml file specifies that the
          myAntTargetBeforeChunk target is always run before the chunk step in the
        pre-processing stage.
<plugin id="com.example.extendchunk">
  <feature extension="depend.preprocess.chunk.pre" 
           value="myAntTargetBeforeChunk"/>
</plugin>It assumes that the myAntTargetBeforeChunk target has already been defined and integrated.