You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by cb...@apache.org on 2007/05/13 01:06:54 UTC

svn commit: r537524 - in /velocity/dvsl/trunk: build.properties build.xml

Author: cbrisson
Date: Sat May 12 16:06:53 2007
New Revision: 537524

URL: http://svn.apache.org/viewvc?view=rev&rev=537524
Log:
download oro jar as well

Modified:
    velocity/dvsl/trunk/build.properties
    velocity/dvsl/trunk/build.xml

Modified: velocity/dvsl/trunk/build.properties
URL: http://svn.apache.org/viewvc/velocity/dvsl/trunk/build.properties?view=diff&rev=537524&r1=537523&r2=537524
==============================================================================
--- velocity/dvsl/trunk/build.properties (original)
+++ velocity/dvsl/trunk/build.properties Sat May 12 16:06:53 2007
@@ -30,6 +30,7 @@
 jar.dom4j.version= 1.6
 jar.jaxen.version= 1.1.1
 jar.junit.version= 4.3.1
+jar.oro.version= 2.0.8
 jar.velocity.version= 1.5
 jar.xalan.version= 2.7.0
 

Modified: velocity/dvsl/trunk/build.xml
URL: http://svn.apache.org/viewvc/velocity/dvsl/trunk/build.xml?view=diff&rev=537524&r1=537523&r2=537524
==============================================================================
--- velocity/dvsl/trunk/build.xml (original)
+++ velocity/dvsl/trunk/build.xml Sat May 12 16:06:53 2007
@@ -71,6 +71,7 @@
     <antcall target="dom4j-download" />
     <antcall target="jaxen-download" />
     <antcall target="junit-download" />
+    <antcall target="oro-download" />
     <antcall target="velocity-download" />
     <antcall target="xalan-download" />    
   </target>
@@ -108,6 +109,12 @@
   <target name="junit-download">
     <property name="download.jarname" value="junit" />
     <property name="download.jarversion" value="${jar.junit.version}" />
+    <antcall target="http-download"/>
+  </target>
+
+  <target name="oro-download">
+    <property name="download.jarname" value="oro" />
+    <property name="download.jarversion" value="${jar.oro.version}" />
     <antcall target="http-download"/>
   </target>