bayard 2002/11/12 07:59:31
Modified: dbutils build.xml
Log:
Lang dependency added [cvs co Lang, then ant dist it].
Outputs a SNAPSHOT file.
Revision Changes Path
1.2 +10 -2 jakarta-commons-sandbox/dbutils/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/dbutils/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- build.xml 8 Nov 2002 23:48:01 -0000 1.1
+++ build.xml 12 Nov 2002 15:59:30 -0000 1.2
@@ -22,6 +22,9 @@
version 3.7 or later -->
<property name="junit.home" value="/usr/local/junit3.7"/>
+ <!-- The home directory for the Commons Lang classes distribution -->
+ <property name="commons-lang.home" value="../../jakarta-commons/lang/dist"/>
+
<!-- ========== Derived Values ============================================ -->
@@ -29,6 +32,10 @@
<!-- The pathname of the "junit.jar" JAR file -->
<property name="junit.jar" value="${junit.home}/junit.jar"/>
+ <!-- The pathname of the lang classes JAR file -->
+ <property name="commons-lang.jar"
+ value="${commons-lang.home}/commons-lang-1.0.jar"/>
+
<!-- ========== Component Declarations ==================================== -->
@@ -43,7 +50,7 @@
<property name="component.title" value="dbutils Utilities"/>
<!-- The current version number of this component -->
- <property name="component.version" value="1.0-dev"/>
+ <property name="component.version" value="SNAPSHOT"/>
<!-- The base directory for compilation targets -->
<property name="build.home" value="target"/>
@@ -76,6 +83,7 @@
<!-- Construct compile classpath -->
<path id="compile.classpath">
<pathelement location="${build.home}/classes"/>
+ <pathelement location="${commons-lang.jar}"/>
</path>
--
To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@;jakarta.apache.org>