Author: nbubna
Date: Tue Oct 18 16:06:10 2005
New Revision: 326296
URL: http://svn.apache.org/viewcvs?rev=326296&view=rev
Log:
add catch-all compile and jar targets
Modified:
jakarta/velocity/tools/trunk/build.xml
Modified: jakarta/velocity/tools/trunk/build.xml
URL:
http://svn.apache.org/viewcvs/jakarta/velocity/tools/trunk/build.xml?rev=326296&r1=326295&r2=326296&view=diff
==============================================================================
--- jakarta/velocity/tools/trunk/build.xml (original)
+++ jakarta/velocity/tools/trunk/build.xml Tue Oct 18 16:06:10 2005
@@ -1,5 +1,5 @@
<!--
- Copyright 2003-2004 The Apache Software Foundation.
+ Copyright 2003-2005 The Apache Software Foundation.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -65,6 +65,7 @@
<pathelement location="${commons-beanutils.jar}"/>
<pathelement location="${commons-collections.jar}"/>
<pathelement location="${commons-digester.jar}"/>
+ <pathelement location="${commons-lang.jar}"/>
<pathelement location="${commons-logging.jar}"/>
<pathelement location="${commons-validator.jar}"/>
<pathelement location="${struts.jar}"/>
@@ -72,7 +73,6 @@
<pathelement location="${sslext.jar}"/>
<pathelement location="${servlet.jar}"/>
<pathelement location="${velocity.jar}"/>
- <pathelement location="${commons-lang.jar}"/>
<!-- for JDK 1.3 users -->
<pathelement location="${xerces.jar}"/>
@@ -139,6 +139,10 @@
+ <!-- Compile VelocityTools (all of it) -->
+ <target name="compile" depends="compile.struts"
+ description="Compiles the Velocity-Tools project (struts, view and
generic)"/>
+
<!-- Compile VelocityStruts (struts, view, generic) -->
<target name="compile.struts" depends="prepare"
description="Compiles the Velocity-Tools project (struts, view, and
generic)">
@@ -182,6 +186,10 @@
</target>
+
+ <!-- Jar VelocityTools (struts, view, generic) -->
+ <target name="jar" depends="jar.struts"
+ description="Creates a velocity-tools jar in the dist directory."/>
<!-- Jar VelocityStruts (struts, view, generic) -->
<target name="jar.struts" depends="compile.struts"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]