| <project> |
| <modelVersion>4.0.0</modelVersion> |
| <name>Maven Integration Test :: it0025</name> |
| <groupId>org.apache.maven.its.it0025</groupId> |
| <artifactId>maven-it-it0025</artifactId> |
| <description>Test multiple goal executions with different execution-level configs.</description> |
| <version>1.0-SNAPSHOT</version> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.its.plugins</groupId> |
| <artifactId>maven-it-plugin-touch</artifactId> |
| <version>2.1-SNAPSHOT</version> |
| <executions> |
| <execution> |
| <id>test1</id> |
| <phase>validate</phase> |
| |
| <configuration> |
| <pluginItem>test.txt</pluginItem> |
| </configuration> |
| |
| <goals> |
| <goal>touch</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>test2</id> |
| <phase>validate</phase> |
| |
| <configuration> |
| <pluginItem>test2.txt</pluginItem> |
| </configuration> |
| <goals> |
| <goal>touch</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |