You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by he...@apache.org on 2006/11/23 00:15:22 UTC

svn commit: r478370 - /gump/metadata/project/jakarta-velocity.xml

Author: henning
Date: Wed Nov 22 15:15:21 2006
New Revision: 478370

URL: http://svn.apache.org/viewvc?view=rev&rev=478370
Log:
First try at making the tests pass...


Modified:
    gump/metadata/project/jakarta-velocity.xml

Modified: gump/metadata/project/jakarta-velocity.xml
URL: http://svn.apache.org/viewvc/gump/metadata/project/jakarta-velocity.xml?view=diff&rev=478370&r1=478369&r2=478370
==============================================================================
--- gump/metadata/project/jakarta-velocity.xml (original)
+++ gump/metadata/project/jakarta-velocity.xml Wed Nov 22 15:15:21 2006
@@ -37,7 +37,7 @@
       <property name="deprecation" value="true"/>
 
       <!-- gump provides our dependencies. No need to download them. -->
-      <property name="velocity.skip.download" value="true"/>
+      <property name="skip.jar.loading" value="true"/>
 
       <!-- But for building the dep jar, we must unpack collections, lang and oro.
            Let's pass in the version of the newly built jars for that. You find the
@@ -89,20 +89,32 @@
          subject="Build Failure - Velocity Engine"/>
   </project>
 
-  <project name="jakarta-velocity-test">
-    <depend project="velocity-test" inherit="jars"/>
-  </project>
-
-  <project name="velocity-test">
+  <project name="velocity-engine-test">
     <ant basedir="build" target="package">
       <property name="version" value="@@DATE@@"/>
-      <property name="deprecation" value="true"/>
+      <!-- Don't care about deprecation for the tests -->
+      <property name="deprecation" value="false"/>
 
       <!-- gump provides our dependencies. No need to download them. -->
-      <property name="velocity.skip.download" value="true"/>
+      <property name="skip.jar.loading" value="true"/>
+
+      <!-- But for building the dep jar, we must unpack collections, lang and oro.
+           Let's pass in the version of the newly built jars for that. You find the
+           properties to override in build.properties 
+       -->
+      <property name="jar.commons-collections.version" value="@@DATE@@"/>
+      <property name="jar.commons-lang.version" value="@@DATE@@"/>
+      <property name="jar.oro.version" value="@@DATE@@"/>
+      <property name="jar.oro.name" value="jakarta-oro"/>
+
+      <property name="jar.commons-collections.dir" project="commons-collections"
+                path="collections/build" />
+      <property name="jar.commons-lang.dir" project="commons-lang"
+                path="lang/dist" />
+      <property name="jar.oro.dir" project="jakarta-oro" reference="home"/>
     </ant>
 
-    <depend project="jakarta-velocity" inherit="hard"/>
+    <depend project="velocity-engine" inherit="hard"/>
 
     <!-- Our test dependencies. -->
     <depend project="hsqldb" />