You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2014/07/14 19:50:53 UTC

svn commit: r1610469 - /commons/proper/validator/trunk/build.xml

Author: britter
Date: Mon Jul 14 17:50:53 2014
New Revision: 1610469

URL: http://svn.apache.org/r1610469
Log:
Use maven central for downloading dependencies in ant script and update dependencies to latest releases

Modified:
    commons/proper/validator/trunk/build.xml

Modified: commons/proper/validator/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/validator/trunk/build.xml?rev=1610469&r1=1610468&r2=1610469&view=diff
==============================================================================
--- commons/proper/validator/trunk/build.xml (original)
+++ commons/proper/validator/trunk/build.xml Mon Jul 14 17:50:53 2014
@@ -511,7 +511,7 @@
         <mkdir dir="${download.lib.dir}" />
         <get dest="${download.lib.dir}/commons-beanutils.jar"
             usetimestamp="true" ignoreerrors="true"
-            src="http://mirrors.ibiblio.org/pub/mirrors/maven/commons-beanutils/jars/commons-beanutils-1.7.0.jar"/>
+            src="http://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.2/commons-beanutils-1.9.2.jar"/>
     </target>
 
     <target name="download-digester" unless="digester.found">
@@ -519,7 +519,7 @@
         <mkdir dir="${download.lib.dir}" />
         <get dest="${download.lib.dir}/commons-digester.jar"
             usetimestamp="true" ignoreerrors="true"
-            src="http://mirrors.ibiblio.org/pub/mirrors/maven/commons-digester/jars/commons-digester-1.8.jar"/>
+            src="http://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar"/>
     </target>
 
     <target name="download-logging" unless="logging.found">
@@ -527,7 +527,7 @@
         <mkdir dir="${download.lib.dir}" />
         <get dest="${download.lib.dir}/commons-logging.jar"
             usetimestamp="true" ignoreerrors="true"
-            src="http://mirrors.ibiblio.org/pub/mirrors/maven/commons-logging/jars/commons-logging-1.1.jar"/>
+            src="http://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"/>
     </target>
 
     <target name="download-junit" unless="junit.found">
@@ -535,7 +535,7 @@
         <mkdir dir="${download.lib.dir}" />
         <get dest="${download.lib.dir}/junit.jar"
             usetimestamp="true" ignoreerrors="true"
-            src="http://mirrors.ibiblio.org/pub/mirrors/maven/junit/jars/junit-3.8.1.jar"/>
+            src="http://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar"/>
     </target>
       
 </project>