Author: henning
Date: Mon Nov 20 12:42:52 2006
New Revision: 477322

URL: http://svn.apache.org/viewvc?view=rev&rev=477322
Log:
Allow Gump to skip jar downloading. Intentionally undocumented, we
don't want people building the jars to do this. Gump can use 
<property name="velocity.skip.download" value="true" /> to build
Velocity on the gump created classpath.


Modified:
    jakarta/velocity/engine/trunk/build/build.xml
    jakarta/velocity/engine/trunk/build/download.xml

Modified: jakarta/velocity/engine/trunk/build/build.xml
URL: 
http://svn.apache.org/viewvc/jakarta/velocity/engine/trunk/build/build.xml?view=diff&rev=477322&r1=477321&r2=477322
==============================================================================
--- jakarta/velocity/engine/trunk/build/build.xml (original)
+++ jakarta/velocity/engine/trunk/build/build.xml Mon Nov 20 12:42:52 2006
@@ -111,6 +111,7 @@
 
     <mkdir dir="${build.dir}"/>
     <mkdir dir="${build.dest}"/>
+    <mkdir dir="${build.lib}" />
     <mkdir dir="${build.src}"/>
     <mkdir dir="${build.test.src}"/>
     <mkdir dir="${build.test.dest}"/>

Modified: jakarta/velocity/engine/trunk/build/download.xml
URL: 
http://svn.apache.org/viewvc/jakarta/velocity/engine/trunk/build/download.xml?view=diff&rev=477322&r1=477321&r2=477322
==============================================================================
--- jakarta/velocity/engine/trunk/build/download.xml (original)
+++ jakarta/velocity/engine/trunk/build/download.xml Mon Nov 20 12:42:52 2006
@@ -28,7 +28,8 @@
 -->
 
 <project name="Velocity" basedir="..">
-  <target name="build-download" description="Download all the Velocity 
dependencies from the central repository">
+  <target name="build-download" unless="velocity.skip.download"
+          description="Download all the Velocity dependencies from the central 
repository">
    <mkdir dir="${build.lib}" />
    <antcall target="antlr-download" />
    <antcall target="avalon-logkit-download" />



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to