mirror of https://github.com/apache/maven.git
36 lines
902 B
XML
36 lines
902 B
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>
|
||
|
<configuration>
|
||
|
<pluginItem>test.txt</pluginItem>
|
||
|
</configuration>
|
||
|
|
||
|
<goals>
|
||
|
<goal>touch</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
<execution>
|
||
|
<configuration>
|
||
|
<pluginItem>test2.txt</pluginItem>
|
||
|
</configuration>
|
||
|
<goals>
|
||
|
<goal>touch</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</model>
|