mirror of https://github.com/apache/maven.git
35 lines
807 B
XML
35 lines
807 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>test-components</artifactId>
|
|
<groupId>test</groupId>
|
|
<version>0.1</version>
|
|
</parent>
|
|
|
|
<groupId>test</groupId>
|
|
<artifactId>test-component-c</artifactId>
|
|
<version>0.1</version>
|
|
<name>Test Component C</name>
|
|
<packaging>war</packaging>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-core-it-plugin</artifactId>
|
|
<version>1.0</version>
|
|
<configuration>
|
|
<goalItem>my-test</goalItem>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>touch</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|