0

将 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 插件的一部分。

有没有办法做到这一点?

4

1 回答 1

0

不久前我写了一个实验来做到这一点。看看 jslint4java 的maven-plugin-in-ant分支。

于 2011-06-18T06:39:25.937 回答