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 2011/07/06 17:48:24 UTC

svn commit: r1143472 - /maven/archetype/trunk/archetype-common/pom.xml

Author: olamy
Date: Wed Jul  6 15:48:23 2011
New Revision: 1143472

URL: http://svn.apache.org/viewvc?rev=1143472&view=rev
Log:
force java.io.tmpdir to ${project.build.outputDirectory} to avoid all of those Jetty directories in my /tmp

Modified:
    maven/archetype/trunk/archetype-common/pom.xml

Modified: maven/archetype/trunk/archetype-common/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-common/pom.xml?rev=1143472&r1=1143471&r2=1143472&view=diff
==============================================================================
--- maven/archetype/trunk/archetype-common/pom.xml (original)
+++ maven/archetype/trunk/archetype-common/pom.xml Wed Jul  6 15:48:23 2011
@@ -384,12 +384,10 @@ under the License.
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <systemProperties>
-            <property>
-              <name>maven.home</name>
-              <value>${maven.home}</value>
-            </property>
-          </systemProperties>
+          <systemPropertyVariables>
+            <maven.home>${maven.home}</maven.home>
+            <java.io.tmpdir>${project.build.outputDirectory}</java.io.tmpdir>
+          </systemPropertyVariables>
         </configuration>
       </plugin>
     </plugins>