mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
MAke plugin discovery reactor aware git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@290887 13f79535-47bb-0310-9956-ffa450edef68
43 lines
926 B
XML
43 lines
926 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>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>test</groupId>
|
|
<artifactId>test-component-b</artifactId>
|
|
<version>0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>test</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>
|