You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2009/02/08 12:41:52 UTC

svn commit: r742065 - /maven/components/branches/maven-2.0.x/build.xml

Author: bentmann
Date: Sun Feb  8 11:41:51 2009
New Revision: 742065

URL: http://svn.apache.org/viewvc?rev=742065&view=rev
Log:
o Used <property location=""> to get proper path names (merged from r742062)

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

Modified: maven/components/branches/maven-2.0.x/build.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/build.xml?rev=742065&r1=742064&r2=742065&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/build.xml (original)
+++ maven/components/branches/maven-2.0.x/build.xml Sun Feb  8 11:41:51 2009
@@ -27,7 +27,7 @@
   </target>
 
   <target name="initLocalRepo">
-    <property name="maven.repo.local" value="${user.home}/.m2/repository"/>
+    <property name="maven.repo.local" location="${user.home}/.m2/repository"/>
     <echo>Using the local repository at: ${maven.repo.local}</echo>
   </target>
 
@@ -290,7 +290,7 @@
   <target name="with-its" depends="all,run-its"/>
   
   <target name="set-temp-maven-home" depends="read-poms">
-    <property name="maven.home" value="${java.io.tmpdir}${file.separator}apache-maven-${pom.version}"/>
+    <property name="maven.home" location="${java.io.tmpdir}/apache-maven-${pom.version}"/>
     <echo>Using temporary maven install directory: ${maven.home}</echo>
   </target>