blob: d609a2b2bf4dda26054ed3394d5ffc6461755267 [file] [log] [blame]
<?xml version="1.0"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.its.mng2668</groupId>
<version>1.0-SNAPSHOT</version>
<artifactId>test-project</artifactId>
</parent>
<artifactId>project</artifactId>
<name>Maven Integration Test :: MNG-2539 :: Plugin Dependency Consumer</name>
<description>
Verify that dependencies of plugins are considered by the project sorter for a reactor build.
</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-artifact</artifactId>
<version>2.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tools</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<configuration>
<mainFile>pom.xml</mainFile>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>set</goal>
<goal>install</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>