你将如何在Maven构建周期内执行不同阶段的Ant任务?
Answer 1:
我在编译/插件部分使用该
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>clean</id>
<phase>clean</phase>
<configuration>
<tasks>
<echo message = ">>>>>>>>>>>>>>>>>>>>>>>>>>clean"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>compile</id>
<phase>compile</phase>
<configuration>
<tasks>
<echo message = ">>>>>>>>>>>>>>>>>>>>>>>>>>>>compile"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>package</id>
<phase>package</phase>
<configuration>
<tasks>
<echo message = ">>>>>>>>>>>>>>>>>>>>>>>>>>>>package"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
文章来源: Multiple antrun tasks in maven