blob: d72cfda8d13a50e9a2f4233aa3f6481dfa83c01c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.it0025</groupId>
<artifactId>maven-it-it0025</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Maven Integration Test :: it0025</name>
<description>Test multiple goal executions with different execution-level configs.</description>
<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>
<goals>
<goal>touch</goal>
</goals>
<phase>validate</phase>
<configuration>
<pluginItem>test.txt</pluginItem>
</configuration>
</execution>
<execution>
<id>test2</id>
<goals>
<goal>touch</goal>
</goals>
<phase>validate</phase>
<configuration>
<pluginItem>test2.txt</pluginItem>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>