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/24 00:38:22 UTC

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

Author: baerrach
Date: Tue Jun 23 22:38:22 2009
New Revision: 787858

URL: http://svn.apache.org/viewvc?rev=787858&view=rev
Log:
Using Ant's location attribute to property to reference the script file in an attempt to fix the problem.

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