将maven与ant集成的方法是简单地使用maven-antrun-plugin,如
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>package</id>
<phase>package</phase>
<configuration>
<tasks>
<ant antfile="build.xml" target="package" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
在项目的pom.xml文件中
但是,我希望能够将该关联的build.xml脚本与执行配置一起作为定义自定义打包和生命周期的maven插件的一部分。
有办法吗?