Created
February 17, 2016 21:25
-
-
Save thigm85/06376dcf7b51f65c9132 to your computer and use it in GitHub Desktop.
POM file where a goal is executed in the pre-clean, clean and post-clean phases of the clean lifecycle. Reference: http://www.tutorialspoint.com/maven/maven_build_life_cycle.htm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 | |
http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.companyname.projectgroup</groupId> | |
<artifactId>project</artifactId> | |
<version>1.0</version> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-antrun-plugin</artifactId> | |
<version>1.1</version> | |
<executions> | |
<execution> | |
<id>id.pre-clean</id> | |
<phase>pre-clean</phase> | |
<goals> | |
<goal>run</goal> | |
</goals> | |
<configuration> | |
<tasks> | |
<echo>pre-clean phase</echo> | |
</tasks> | |
</configuration> | |
</execution> | |
<execution> | |
<id>id.clean</id> | |
<phase>clean</phase> | |
<goals> | |
<goal>run</goal> | |
</goals> | |
<configuration> | |
<tasks> | |
<echo>clean phase</echo> | |
</tasks> | |
</configuration> | |
</execution> | |
<execution> | |
<id>id.post-clean</id> | |
<phase>post-clean</phase> | |
<goals> | |
<goal>run</goal> | |
</goals> | |
<configuration> | |
<tasks> | |
<echo>post-clean phase</echo> | |
</tasks> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment