mirror of https://github.com/apache/maven.git
47 lines
1.2 KiB
XML
47 lines
1.2 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>touch</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>test2</id>
|
|
|
|
<configuration>
|
|
<pluginItem>test2.txt</pluginItem>
|
|
</configuration>
|
|
<goals>
|
|
<goal>touch</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>snapshots</id>
|
|
<name>Maven Central Plugins Development Repository</name>
|
|
<url>http://snapshots.maven.codehaus.org/maven2/plugins</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</model>
|