sanders 01/04/16 15:29:24
Modified: digester build.xml
Added: digester .cvsignore
Log:
Build is now working, with a change to collections ;-)
Revision Changes Path
1.2 +18 -6 jakarta-commons-sandbox/digester/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/digester/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- build.xml 2001/04/16 21:35:10 1.1
+++ build.xml 2001/04/16 22:29:24 1.2
@@ -3,7 +3,7 @@
<!--
"Digester" component of the Jakarta Commons Subproject
- $Id: build.xml,v 1.1 2001/04/16 21:35:10 sanders Exp $
+ $Id: build.xml,v 1.2 2001/04/16 22:29:24 sanders Exp $
-->
@@ -12,22 +12,29 @@
<property file="build.properties"/> <!-- Component local -->
<property file="../build.properties"/> <!-- Commons local -->
- <property file="${user.home}/.build.properties"/> <!-- User local -->
+ <property file="${user.home}/build.properties"/> <!-- User local -->
<!-- ========== External Dependencies ===================================== -->
- <!-- The directory containing your binary distribution of JUnit,
- version 3.5 or later -->
+ <!-- The directories corresponding to your necessary dependencies -->
+ <property name="jaxp.home" value="/usr/local/jaxp1.1"/>
<property name="junit.home" value="/usr/local/junit3.5"/>
+ <property name="commons.home" value="../../jakarta-commons"/>
+ <property name="beanutils.home" value="${commons.home}/beanutils"/>
+ <property name="collections.home" value="${commons.home}/collections"/>
<!-- ========== Derived Values ============================================ -->
- <!-- The pathname of the "junit.jar" JAR file -->
+ <!-- The locations of necessary jar files -->
+ <property name="jaxp.jaxp.jar" value="${jaxp.home}/jaxp.jar"/>
+ <property name="jaxp.parser.jar" value="${jaxp.home}/crimson.jar"/>
<property name="junit.jar" value="${junit.home}/junit.jar"/>
+ <property name="beanutils.jar"
value="${beanutils.home}/build/commons-beanutils.jar"/>
+ <property name="collections.jar"
value="${collections.home}/build/commons-collections.jar"/>
<!-- ========== Component Declarations ==================================== -->
@@ -65,7 +72,7 @@
<property name="compile.debug" value="true"/>
<!-- Should Java compilations set the 'deprecation' compiler option? -->
- <property name="compile.deprecation" value="true"/>
+ <property name="compile.deprecation" value="false"/>
<!-- Should Java compilations set the 'optimize' compiler option? -->
<property name="compile.optimize" value="true"/>
@@ -73,6 +80,11 @@
<!-- Construct compile classpath -->
<path id="compile.classpath">
<pathelement location="${build.home}/classes"/>
+ <pathelement location="${jaxp.jaxp.jar}"/>
+ <pathelement location="${jaxp.parser.jar}"/>
+ <pathelement location="${beanutils.jar}"/>
+ <pathelement location="${collections.jar}"/>
+ <pathelement location="${junit.jar}"/>
</path>
@@ -226,4 +238,4 @@
-</project>
+</project>
\ No newline at end of file
1.1 jakarta-commons-sandbox/digester/.cvsignore
Index: .cvsignore
===================================================================
build
build.properties
target