o adding IT it0087

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465861 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-19 20:49:30 +00:00
parent 3fbf27df26
commit 6ccfd023a6
1 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,47 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it</groupId>
<version>1.0</version>
<artifactId>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>
<name>POM Plugin-Dependency Classloading Test</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-core-it-plugin</artifactId>
<version>1.0</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>