Author: olamy Date: Mon Feb 27 09:12:14 2012 New Revision: 1294069 URL: http://svn.apache.org/viewvc?rev=1294069&view=rev Log: use new syntax for sys props configuration in failsafe
Modified: maven/indexer/trunk/indexer-core/pom.xml maven/indexer/trunk/pom.xml Modified: maven/indexer/trunk/indexer-core/pom.xml URL: http://svn.apache.org/viewvc/maven/indexer/trunk/indexer-core/pom.xml?rev=1294069&r1=1294068&r2=1294069&view=diff ============================================================================== --- maven/indexer/trunk/indexer-core/pom.xml (original) +++ maven/indexer/trunk/indexer-core/pom.xml Mon Feb 27 09:12:14 2012 @@ -287,17 +287,12 @@ under the License. <goal>verify</goal> </goals> <configuration> - <redirectTestOutputToFile>true</redirectTestOutputToFile> - <systemProperties> - <property> - <name>indexerJar</name> - <value>${project.build.directory}/${project.artifactId}-${project.version}-cli.jar</value> - </property> - <property> - <name>index-server</name> - <value>${index-server}</value> - </property> - </systemProperties> + <redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile> + <systemPropertyVariables> + <java.io.tmpdir>${project.build.directory}</java.io.tmpdir> + <indexerJar>${project.build.directory}/${project.artifactId}-${project.version}-cli.jar</indexerJar> + <index-server>${index-server}</index-server> + </systemPropertyVariables> </configuration> </execution> </executions> Modified: maven/indexer/trunk/pom.xml URL: http://svn.apache.org/viewvc/maven/indexer/trunk/pom.xml?rev=1294069&r1=1294068&r2=1294069&view=diff ============================================================================== --- maven/indexer/trunk/pom.xml (original) +++ maven/indexer/trunk/pom.xml Mon Feb 27 09:12:14 2012 @@ -125,6 +125,7 @@ under the License. </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile>