o adding IT it0086

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

View File

@ -0,0 +1,39 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it</groupId>
<version>1.0</version>
<artifactId>it0086</artifactId>
<description>Verify that a plugin dependency class can be loaded from both the plugin classloader and the
context classloader available to the plugin.</description>
<name>Plugin Dependency Classloading Test</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-core-it-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<phase>validate</phase>
<configuration>
<className>
bsh.Interpreter
</className>
</configuration>
<goals>
<goal>loadable</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>