Execute build.xml with Maven
问题 Is it possible to execute build.xml script with Maven? This script checksout all my projects and subprojects and I've just got used to using maven, didn't really use much of an ant before and I know ant can be used with Maven. So my question is: how? 回答1: I'm really not a big fan of this approach (either use Ant, or Maven, but not a bastard mix) but you can use an external build.xml with the Maven AntRun Plugin: <project> ... <build> <plugins> ... <plugin> <groupId>org.apache.maven.plugins<