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>