You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by sd...@apache.org on 2015/05/31 23:38:55 UTC

svn commit: r1682800 - in /velocity/engine/branches/Velocity_1.5_BRANCH/build: build.properties download.xml

Author: sdumitriu
Date: Sun May 31 21:38:55 2015
New Revision: 1682800

URL: http://svn.apache.org/r1682800
Log:
VELOCITY-860: Fix Velocity 1.7.x, 1.6.x, 1.5 ant download dependency build script
Patch from Mike Kienenberger applied without changes

Modified:
    velocity/engine/branches/Velocity_1.5_BRANCH/build/build.properties
    velocity/engine/branches/Velocity_1.5_BRANCH/build/download.xml

Modified: velocity/engine/branches/Velocity_1.5_BRANCH/build/build.properties
URL: http://svn.apache.org/viewvc/velocity/engine/branches/Velocity_1.5_BRANCH/build/build.properties?rev=1682800&r1=1682799&r2=1682800&view=diff
==============================================================================
--- velocity/engine/branches/Velocity_1.5_BRANCH/build/build.properties (original)
+++ velocity/engine/branches/Velocity_1.5_BRANCH/build/build.properties Sun May 31 21:38:55 2015
@@ -105,7 +105,7 @@ proxy.port= 80
 
 #
 # We download directly from the ibiblio maven repository
-repo.url= http://www.ibiblio.org/maven
+repo.url= http://mirrors.ibiblio.org/maven2
 
 #
 # Jars to be downloaded

Modified: velocity/engine/branches/Velocity_1.5_BRANCH/build/download.xml
URL: http://svn.apache.org/viewvc/velocity/engine/branches/Velocity_1.5_BRANCH/build/download.xml?rev=1682800&r1=1682799&r2=1682800&view=diff
==============================================================================
--- velocity/engine/branches/Velocity_1.5_BRANCH/build/download.xml (original)
+++ velocity/engine/branches/Velocity_1.5_BRANCH/build/download.xml Sun May 31 21:38:55 2015
@@ -60,7 +60,7 @@
 
   <target name="do-http-download" unless="skip-download">
     <setproxy proxyhost="${proxy.host}" proxyport="${proxy.port}"/>
-    <get src="${repo.url}/${download.jarname}/jars/${download.jarname}-${download.jarversion}.jar"
+    <get src="${repo.url}/${download.jarname}/${download.jarname}/${download.jarversion}/${download.jarname}-${download.jarversion}.jar"
          dest="${build.lib}/${download.jarname}-${download.jarversion}.jar"
          usetimestamp="true"
          verbose="false"
@@ -82,7 +82,7 @@
 
   <target name="do-http-test-download" unless="skip-download">
     <setproxy proxyhost="${proxy.host}" proxyport="${proxy.port}"/>
-    <get src="${repo.url}/${download.jarname}/jars/${download.jarname}-${download.jarversion}.jar"
+    <get src="${repo.url}/${download.jarname}/${download.jarname}/${download.jarversion}/${download.jarname}-${download.jarversion}.jar"
          dest="${build.test.lib}/${download.jarname}-${download.jarversion}.jar"
          usetimestamp="true"
          verbose="false"