You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2008/11/25 00:19:39 UTC

svn commit: r720336 - /maven/components/branches/maven-2.1.x/build.xml

Author: jdcasey
Date: Mon Nov 24 15:19:39 2008
New Revision: 720336

URL: http://svn.apache.org/viewvc?rev=720336&view=rev
Log:
Trying target that will setup a temp maven directory for unzipping based on java.io.tmpdir, since it seems like this won't resolve from within a CI build using the Ant command line, such as -Dmaven.home=${java.io.tmpdir}/maven

Modified:
    maven/components/branches/maven-2.1.x/build.xml

Modified: maven/components/branches/maven-2.1.x/build.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.1.x/build.xml?rev=720336&r1=720335&r2=720336&view=diff
==============================================================================
--- maven/components/branches/maven-2.1.x/build.xml (original)
+++ maven/components/branches/maven-2.1.x/build.xml Mon Nov 24 15:19:39 2008
@@ -249,4 +249,8 @@
 
   <target name="with-its" depends="all,run-its"/>
   
+  <target name="with-temp-maven-home">
+    <property name="maven.home" value="${java.io.tmpdir}/maven"/>
+  </target>
+  
 </project>