2006-01-09 20:14:38 -05:00
|
|
|
<project>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.apache.maven.it</groupId>
|
|
|
|
<version>1.0</version>
|
|
|
|
|
|
|
|
<artifactId>it0086</artifactId>
|
|
|
|
|
|
|
|
<name>Plugin Dependency Classloading Test</name>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
Ensure that classes in dependencies of the plugin can be loaded, both from the context loader and the plugin's classloader.
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-core-it-plugin</artifactId>
|
2006-05-29 03:07:08 -04:00
|
|
|
<version>1.0</version>
|
2006-01-09 20:14:38 -05:00
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
|
|
|
<configuration>
|
|
|
|
<className>
|
|
|
|
bsh.Interpreter
|
|
|
|
</className>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>loadable</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|