blob: a80af53bdcfaea533edf23077444764d934c8748 [file] [log] [blame]
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>maven-it-it0042</artifactId>
<groupId>org.apache.maven.its.it0042</groupId>
<version>0.1</version>
</parent>
<artifactId>test-component-c</artifactId>
<version>0.1</version>
<name>Test Component C</name>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>org.apache.maven.its.it0042</groupId>
<artifactId>test-component-b</artifactId>
<version>0.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.it0042</groupId>
<artifactId>test-plugin</artifactId>
<version>0.1</version>
<configuration>
<value>my-test</value>
</configuration>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>