You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ba...@apache.org on 2009/06/23 06:23:03 UTC

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

Author: baerrach
Date: Tue Jun 23 04:23:03 2009
New Revision: 787536

URL: http://svn.apache.org/viewvc?rev=787536&view=rev
Log:
Hacking to see why hudson is failing.
For the failing plugin moving to validate phase so it happens early and to echo cwd in an attempt to prove that it is not the project.basedir

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=787536&r1=787535&r2=787536&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/pom.xml Tue Jun 23 04:23:03 2009
@@ -219,10 +219,17 @@
         <executions>
           <execution>
             <id>verify-integration-tests-checks</id>
+            <phase>validate</phase>
+            <!-- 
             <phase>post-integration-test</phase>
+             -->
             <configuration>
-              <tasks>              
+              <tasks>
+                <property name="cwd" location="."/>
+                <echo message="cwd = ${cwd}"/>
+                <!-- 
                 <script language="beanshell" src="verify-integration-tests-checks.bsh" />
+                -->
               </tasks>
             </configuration>
             <goals>