You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2012/02/27 10:01:43 UTC

svn commit: r1294067 - /maven/indexer/trunk/pom.xml

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>