Ant Tasks
EasyAnt comes with a few Ant tasks.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>