<project>
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.nowhere</groupId>
	<artifactId>nothing</artifactId>
	<version>1.0</version>
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-antrun-plugin</artifactId> 
				<executions>

					<execution>
						<id>initializing</id>
						<phase>initialize</phase> 
						<configuration>
							<tasks>
								<echo>Calling initialize phase</echo>
							</tasks>
						</configuration>
						<goals>
							<goal>run</goal> 
						</goals>
					</execution>

					<execution>
						<id>generating sources</id>
						<phase>generate-sources</phase> 
						<configuration>
							<tasks>
								<echo>Calling generate-sources phase</echo>
							</tasks>
						</configuration>
						<goals>
							<goal>run</goal> 
						</goals>
					</execution>

					<execution>
						<id>processing sources</id>
						<phase>process-sources</phase> 
						<configuration>
							<tasks>
								<echo>Calling process-sources phase</echo>
							</tasks>
						</configuration>
						<goals>
							<goal>run</goal> 
						</goals>
					</execution>

					<execution>
						<id>generating resources</id>
						<phase>generate-resources</phase> 
						<configuration>
							<tasks>
								<echo>Calling generate-resources phase</echo>
							</tasks>
						</configuration>
						<goals>
							<goal>run</goal> 
						</goals>
					</execution>

					<execution>
						<id>processing resources</id>
						<phase>process-resources</phase> 
						<configuration>
							<tasks>
								<echo>Calling process-resources phase</echo>
							</tasks>
						</configuration>
						<goals>
							<goal>run</goal> 
						</goals>
					</execution>

				</executions>
			</plugin>
		</plugins>
	</build>
</project>

