我在 ${basedir}/codebase 位置有一个名为 MakeJar.xml 的 xml 文件。在我的外壳上,如果我必须运行该文件,我曾经使用命令“ant -f MakeJar.xml”。现在,如果我必须使用 pom.xml 运行这个文件,我该怎么做?
我准备了以下 pom.xml。但它不起作用!
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>default-cli</id>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<ant antfile="${basedir}/codebase/MakeJar.xml"/>
</tasks>
</configuration>
</execution>
</executions>
</plugin>