Author: olamy Date: Mon Feb 27 09:01:42 2012 New Revision: 1294067 URL: http://svn.apache.org/viewvc?rev=1294067&view=rev Log: configure surefire to java.io.tmpdir=${project.build.directory}
Modified: maven/indexer/trunk/pom.xml Modified: maven/indexer/trunk/pom.xml URL: http://svn.apache.org/viewvc/maven/indexer/trunk/pom.xml?rev=1294067&r1=1294066&r2=1294067&view=diff ============================================================================== --- maven/indexer/trunk/pom.xml (original) +++ maven/indexer/trunk/pom.xml Mon Feb 27 09:01:42 2012 @@ -128,6 +128,9 @@ under the License. <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile> + <systemPropertyVariables> + <java.io.tmpdir>${project.build.directory}</java.io.tmpdir> + </systemPropertyVariables> </configuration> </plugin>