o Added hotfix for corruption of Surefire class path during test execution

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@729305 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2008-12-24 12:57:53 +00:00
parent 0f00d0191d
commit c9014bc2e0
1 changed files with 11 additions and 0 deletions

View File

@ -188,6 +188,17 @@ under the License.
<artifactId>maven-it-plugin-project-interpolation</artifactId>
<version>${itPluginVersion}</version>
<scope>runtime</scope>
<exclusions>
<!--
NOTE: This artifact (and its dependency maven-verifier) are in use by the class loader employed by Surefire
to orchestrate this test. Re-downloading (newer snapshots of) these artifacts during the tests will wreck
havoc on the class loader, i.e. tests fail due to NoClassDefFoundError's in the test controller.
-->
<exclusion>
<groupId>org.apache.maven.its</groupId>
<artifactId>maven-it-helper</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven.its.plugins</groupId>