You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by xa...@apache.org on 2006/12/22 07:26:26 UTC

svn commit: r489572 - /incubator/ivy/trunk/build.xml

Author: xavier
Date: Thu Dec 21 23:26:25 2006
New Revision: 489572

URL: http://svn.apache.org/viewvc?view=rev&rev=489572
Log:
use antoine web site to pull ivy.jar as a temporary solution

Modified:
    incubator/ivy/trunk/build.xml

Modified: incubator/ivy/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/trunk/build.xml?view=diff&rev=489572&r1=489571&r2=489572
==============================================================================
--- incubator/ivy/trunk/build.xml (original)
+++ incubator/ivy/trunk/build.xml Thu Dec 21 23:26:25 2006
@@ -18,7 +18,8 @@
 	<target name="download-ivy" unless="offline">
     	<mkdir dir="${ivy.jar.dir}"/>
 		<!-- download Ivy from web site so that it can be used even without any special installation -->
-    	<get src="http://www.jayasoft.org/downloads/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
+		<!-- use a non standard location during migration to apache -->
+    	<get src="http://people.apache.org/~antoine/ivy/ivy-${ivy.install.version}.jar"
     		 dest="${ivy.jar.file}" usetimestamp="true"/>
 	</target>