You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2008/03/05 15:16:37 UTC

svn commit: r633851 - /maven/plugins/trunk/maven-eclipse-plugin/pom.xml

Author: aheritier
Date: Wed Mar  5 06:16:36 2008
New Revision: 633851

URL: http://svn.apache.org/viewvc?rev=633851&view=rev
Log:
MECLIPSE-395 : Plugin tests are failing due to a wrong local repository path. We have to pass system properties org.apache.maven.user-settings and org.apache.maven.global-settings to surefire. 

Modified:
    maven/plugins/trunk/maven-eclipse-plugin/pom.xml

Modified: maven/plugins/trunk/maven-eclipse-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/pom.xml?rev=633851&r1=633850&r2=633851&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/pom.xml Wed Mar  5 06:16:36 2008
@@ -67,6 +67,14 @@
               <name>maven.home</name>
               <value>${maven.home}</value>
             </property>
+            <property>
+              <name>org.apache.maven.user-settings</name>
+              <value>${org.apache.maven.user-settings}</value>
+            </property>
+            <property>
+              <name>org.apache.maven.global-settings</name>
+              <value>${org.apache.maven.global-settings}</value>
+            </property>
           </systemProperties>
           <argLine>${maven.test.jvmargs}</argLine>
         </configuration>