You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2006/11/14 23:40:41 UTC

svn commit: r475028 - /incubator/cxf/trunk/build.xml

Author: dkulp
Date: Tue Nov 14 14:40:40 2006
New Revision: 475028

URL: http://svn.apache.org/viewvc?view=rev&rev=475028
Log:
Force usage of a unique ~/.m2/repository for cruisecontrol

Modified:
    incubator/cxf/trunk/build.xml

Modified: incubator/cxf/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/build.xml?view=diff&rev=475028&r1=475027&r2=475028
==============================================================================
--- incubator/cxf/trunk/build.xml (original)
+++ incubator/cxf/trunk/build.xml Tue Nov 14 14:40:40 2006
@@ -23,10 +23,10 @@
         <delete file="build.out"/>
         <delete file="build.out.clean"/>
         <exec executable="mvn" dir="${basedir}" failonerror="false" output="build.out.clean" logError="true">
-            <arg line="-U clean"/>
+            <arg line="-U clean -Dmaven.repo.local=${user.home}/.m2/repository_cxf"/>
         </exec>
         <exec executable="mvn" dir="${basedir}" failonerror="false" resultproperty="build.result" output="build.out" logError="true">
-            <arg line="-U install -Peverything"/>
+            <arg line="-U install -Peverything -Dmaven.repo.local=${user.home}/.m2/repository_cxf"/>
         </exec>
 
         <copy todir="target/surefire-reports">
@@ -53,11 +53,11 @@
         <delete file="distribution/build.out"/>
         <delete file="distribution/build.out.clean"/>
         <exec executable="mvn" dir="${basedir}/distribution" failonerror="false" output="distribution/build.out.clean" logError="true">
-            <arg line="clean -Drelease"/>
+            <arg line="clean -Drelease -Dmaven.repo.local=${user.home}/.m2/repository_cxf"/>
         </exec>
         <exec executable="mvn" dir="${basedir}/distribution" failonerror="false" resultproperty="build.result"
             output="distribution/build.out" logError="true">
-            <arg line="install -Drelease"/>
+            <arg line="install -Drelease -Dmaven.repo.local=${user.home}/.m2/repository_cxf"/>
         </exec>
 
         <condition property="build.failed">