maven/maven-core-it/it0086/pom.xml

39 lines
953 B
XML

<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>
<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>