...
| Code Block | ||||
|---|---|---|---|---|
| ||||
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>clean</phase>
<configuration>
<tasks>
<!-- run some tasks -->
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
|
Go back to home wikiThe execution above will be called next time the "clean" goal is triggered on the project.
