You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ma...@apache.org on 2007/12/17 23:11:32 UTC

svn commit: r605019 - in /ant/ivy/core/trunk: doc/samples/build.xml src/example/go-ivy/build.xml

Author: maartenc
Date: Mon Dec 17 14:11:31 2007
New Revision: 605019

URL: http://svn.apache.org/viewvc?rev=605019&view=rev
Log:
Updated the build.xml to use the beta1 release

Modified:
    ant/ivy/core/trunk/doc/samples/build.xml
    ant/ivy/core/trunk/src/example/go-ivy/build.xml

Modified: ant/ivy/core/trunk/doc/samples/build.xml
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/doc/samples/build.xml?rev=605019&r1=605018&r2=605019&view=diff
==============================================================================
--- ant/ivy/core/trunk/doc/samples/build.xml (original)
+++ ant/ivy/core/trunk/doc/samples/build.xml Mon Dec 17 14:11:31 2007
@@ -38,7 +38,7 @@
 	
 	<!-- here is the version of ivy we will use. change this property to try a newer 
          version if you want -->
-	<property name="ivy.install.version" value="2.0.0-alpha-2-incubating" />
+	<property name="ivy.install.version" value="2.0.0-beta1" />
 	<property name="ivy.jar.dir" value="${basedir}/ivy" />
 	<property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar" />
 
@@ -50,7 +50,7 @@
     	<mkdir dir="${ivy.jar.dir}"/>
 		<!-- download Ivy from web site so that it can be used even without any special installation -->
 		<echo message="installing ivy..."/>
-    	<get src="http://people.apache.org/~xavier/ivy/${ivy.install.version}/ivy.jar"
+    	<get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
     		 dest="${ivy.jar.file}" usetimestamp="true"/>
     </target>
     

Modified: ant/ivy/core/trunk/src/example/go-ivy/build.xml
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/example/go-ivy/build.xml?rev=605019&r1=605018&r2=605019&view=diff
==============================================================================
--- ant/ivy/core/trunk/src/example/go-ivy/build.xml (original)
+++ ant/ivy/core/trunk/src/example/go-ivy/build.xml Mon Dec 17 14:11:31 2007
@@ -38,7 +38,7 @@
 	
 	<!-- here is the version of ivy we will use. change this property to try a newer 
          version if you want -->
-	<property name="ivy.install.version" value="2.0.0-alpha-2-incubating" />
+	<property name="ivy.install.version" value="2.0.0-beta1" />
 	<property name="ivy.jar.dir" value="${basedir}/ivy" />
 	<property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar" />
 
@@ -50,7 +50,7 @@
     	<mkdir dir="${ivy.jar.dir}"/>
 		<!-- download Ivy from web site so that it can be used even without any special installation -->
 		<echo message="installing ivy..."/>
-    	<get src="http://people.apache.org/~xavier/ivy/${ivy.install.version}/ivy.jar"
+    	<get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
     		 dest="${ivy.jar.file}" usetimestamp="true"/>
     </target>