John Dennis Casey d2e1f3c975 o Adding support for <executions/>, which means multiple runs of the same goal/set-of-goals with different configs.
o Adding @phase declarations for those mojos that seem to be part of the main build, just for completeness
o Added two ITs, to test that <executions/> doesn't mess up the normal operation, and to test multi-execution for a goal.

Should resolve: MNG-172.



git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@190335 13f79535-47bb-0310-9956-ffa450edef68
2005-06-13 02:47:57 +00:00

45 lines
1.0 KiB
XML

<model>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.</groupId>
<artifactId>maven-it0025</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-core-it-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<id>test1</id>
<configuration>
<pluginItem>test.txt</pluginItem>
</configuration>
<goals>
<goal>
<id>touch</id>
</goal>
</goals>
</execution>
<execution>
<id>test2</id>
<configuration>
<pluginItem>test2.txt</pluginItem>
</configuration>
<goals>
<goal>
<id>touch</id>
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</model>