将maven与ant集成的方法是简单地使用类似的maven antrun插件
<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插件的一部分。
有办法做到这一点吗?
我不久前写了一个实验。看看jslint4java的ant分支中的maven插件。