blob: 0263fe823e4303af56dab4a721a92a96ab36e340 [file] [log] [blame]
<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>
<configuration>
<pluginItem>test.txt</pluginItem>
</configuration>
<goals>
<goal>touch</goal>
</goals>
</execution>
<execution>
<id>test2</id>
<configuration>
<pluginItem>test2.txt</pluginItem>
</configuration>
<goals>
<goal>touch</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>