Ant Tasks

EasyAnt comes with a few Ant tasks, that can be used in your module.ant file or in your own plugin.

Most of them are already used by easyant itself.

To use those tasks you should add the following namespace to your ant header.
xmlns:ea="antlib:org.apache.easyant"
Example :
<project name="foobar" xmlns:ea="antlib:org.apache.easyant">
Then you could be able to call the EasyAnt ant tasks with the prefix "ea".
Example :
<project name="foobar" xmlns:ea="antlib:org.apache.easyant">
<ea:core-version requiredrevision="[0.6,+]" />
</project>