I'm about to embark on writing a maven 2 plugin for Antenna. Antenna has existing Ant tasks defined (in fact its an Ant task lib).
In Maven 1 it was fairly easy to implement a Maven plugin using ant tasks because you could simple call them int he plugin... how would that type of conversion be done for Maven 2? So far the best I can see is to create a new Mojo that mirrors the Ant task(s). Is there documentation some place on converting an Ant task to a maven goal?
