Integration with Maven with RTC 4.0.2 (Team concert plugin)
Accepted answer
You can use the antrun plugin in your POM to run Ant scripts, but I generally discourage people from doing that.
Given that you seem hung up on preserving your old Ant build.xml, what's your motivation for using Maven?
Given that you seem hung up on preserving your old Ant build.xml, what's your motivation for using Maven?
Comments
2 other answers
You can't really map an Ant build.xml to a Maven pom.xml. Ant is procedural and Maven is declarative. Here's a short overview ... http://stackoverflow.com/questions/603189/differences-between-ant-and-maven.
You really need to start simple with http://maven.apache.org/ and build up a pom.xml until all aspects of your build are covered.
You really need to start simple with http://maven.apache.org/ and build up a pom.xml until all aspects of your build are covered.