Author: dantran
Date: Sat Aug 16 13:08:07 2008
New Revision: 686557
URL: http://svn.apache.org/viewvc?rev=686557&view=rev
Log:
user surefire 2.4.3, rather then the current surefire, to fire the master
suite. Otherwise We can not cut 2.5 release in the future
Modified:
maven/surefire/trunk/surefire-integration-tests/pom.xml
Modified: maven/surefire/trunk/surefire-integration-tests/pom.xml
URL:
http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/pom.xml?rev=686557&r1=686556&r2=686557&view=diff
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/pom.xml (original)
+++ maven/surefire/trunk/surefire-integration-tests/pom.xml Sat Aug 16 13:08:07
2008
@@ -32,7 +32,6 @@
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
- <version>${project.version}</version>
<configuration>
<!-- DGF only include the "org" package; don't try to run the
tests of the projects under test directly -->
@@ -44,9 +43,12 @@
<!-- Pass current surefire version to the main suite so that it -->
<!-- can forward to all integration test projects. SUREFIRE-513 -->
- <systemPropertyVariables>
- <surefire.version>${project.version}</surefire.version>
- </systemPropertyVariables>
+ <systemProperties>
+ <property>
+ <name>surefire.version</name>
+ <value>${project.version}</value>
+ </property>
+ </systemProperties>
</configuration>
</plugin>