What's a proper way of mavenizing an Ant project? the project has an Ant build.xml file with 3 targets.
I've found out how to configure the pom.xml to run Ant tasks, but what worries me is this: http://maven.apache.org/plugins/maven-antrun-plugin/usage.html: "the maven-antrun-plugin has only one goal, run."
Is it possible to define 3 ant tasks in my pom.xml file and decide which target to run, based on a parameter/property? should I consider using profiles?