You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by he...@apache.org on 2006/11/20 21:42:52 UTC

svn commit: r477322 - in /jakarta/velocity/engine/trunk/build: build.xml download.xml

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: dev-unsubscribe@velocity.apache.org
For additional commands, e-mail: dev-help@velocity.apache.org


Re: svn commit: r477322 - in /jakarta/velocity/engine/trunk/build: build.xml download.xml

Posted by Will Glass-Husain <wg...@forio.com>.
I thought we already had the property "skip.jar.loading"?

WILL

On 11/20/06, henning@apache.org <he...@apache.org> wrote:
> 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: dev-unsubscribe@velocity.apache.org
> For additional commands, e-mail: dev-help@velocity.apache.org
>
>


-- 
Forio Business Simulations

Will Glass-Husain
wglass@forio.com
www.forio.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@velocity.apache.org
For additional commands, e-mail: dev-help@velocity.apache.org