blob: a29edf133406afbcfc8b8ca76644831e6013d131 [file] [log] [blame]
<project>
<modelVersion>4.0.0</modelVersion>
<name>Maven Integration Test :: it0087</name>
<groupId>org.apache.maven.its.it0087</groupId>
<version>1.0</version>
<artifactId>maven-it-it0087</artifactId>
<description>
Verify that a project-level plugin dependency class can be loaded from both the plugin classloader
and the context classloader available to the plugin.
</description>
<repositories>
<repository>
<id>test-plugins</id>
<url>http://people.apache.org/repo/m2-snapshot-repository/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>test-plugins</id>
<url>http://people.apache.org/repo/m2-snapshot-repository/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-loadable</artifactId>
<version>2.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.3</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>validate</phase>
<configuration>
<className>
org.apache.commons.logging.LogFactory
</className>
</configuration>
<goals>
<goal>loadable</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>