Henning, can you clarify this?  I ask because I've recently added to
xdocs/build.xml the paragraph:

<p>Velocity requires various third party jar files for compiling and
for running.  Not all
jar files are required in all cases.  When building, all dependencies
will be downloaded
automatically unless the <code>skip.jar.loading</code> property is set.
</p>

Should it read "velocity.skip.download" instead?  I think it's good to
document this for off-line source hacking.

WILL

On 11/20/06, Will Glass-Husain <[EMAIL PROTECTED]> wrote:
I thought we already had the property "skip.jar.loading"?

WILL

On 11/20/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> 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: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
Forio Business Simulations

Will Glass-Husain
[EMAIL PROTECTED]
www.forio.com



--
Forio Business Simulations

Will Glass-Husain
[EMAIL PROTECTED]
www.forio.com

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

Reply via email to