mirror of https://github.com/apache/maven.git
31 lines
646 B
XML
31 lines
646 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.maven.it</groupId>
|
|
<version>1.0</version>
|
|
<artifactId>it0089-root</artifactId>
|
|
</parent>
|
|
|
|
<artifactId>it0089</artifactId>
|
|
|
|
<name>Plugin Transitive Dependency Classloading Test</name>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-it0089-plugin</artifactId>
|
|
|
|
<executions>
|
|
<execution>
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
<goal>test</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|