You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2006/09/07 10:53:02 UTC

svn commit: r441029 - /maven/continuum/trunk/continuum-core/pom.xml

Author: evenisse
Date: Thu Sep  7 01:53:02 2006
New Revision: 441029

URL: http://svn.apache.org/viewvc?view=rev&rev=441029
Log:
Use childDelegation on surefire plugin for classloading issue with plexus-utils

Modified:
    maven/continuum/trunk/continuum-core/pom.xml

Modified: maven/continuum/trunk/continuum-core/pom.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-core/pom.xml?view=diff&rev=441029&r1=441028&r2=441029
==============================================================================
--- maven/continuum/trunk/continuum-core/pom.xml (original)
+++ maven/continuum/trunk/continuum-core/pom.xml Thu Sep  7 01:53:02 2006
@@ -156,4 +156,15 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <childDelegation>true</childDelegation>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>