nbubna 2003/07/10 14:18:22
Modified: . build.xml build.properties README.txt
Removed: lib jdbc2_0-stdext.jar
Log:
extract the jdbc jar from CVS again (license concerns) and give generous notice of
the extra dependencies required of jdk 1.3 users
Revision Changes Path
1.25 +13 -2 jakarta-velocity-tools/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-velocity-tools/build.xml,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- build.xml 10 Jul 2003 15:44:14 -0000 1.24
+++ build.xml 10 Jul 2003 21:18:22 -0000 1.25
@@ -50,10 +50,13 @@
<path id="compile.classpath">
<pathelement location="${commons-collections.jar}"/>
<pathelement location="${dom4j.jar}"/>
- <pathelement location="${jdbc.jar}"/>
<pathelement location="${struts.jar}"/>
<pathelement location="${servlet.jar}"/>
<pathelement location="${velocity.jar}"/>
+
+ <!-- for JDK 1.3 users -->
+ <pathelement location="${jdbc.jar}"/>
+ <pathelement location="${xerces.jar}"/>
</path>
@@ -120,6 +123,14 @@
<!-- Compile VelocityStruts (struts, view, generic) -->
<target name="compile.struts" depends="prepare"
description="Compiles the Velocity-Tools project (struts, view, and
generic)">
+ <echo>
+ #######################################################
+ #
+ # JDK 1.3 users must define a valid jdbc.jar property
+ # in the build.properties for this to work.
+ #
+ #######################################################
+ </echo>
<javac srcdir="${classes.src}"
debug="${compile.debug}"
optimize="${compile.optimize}"
1.8 +13 -4 jakarta-velocity-tools/build.properties
Index: build.properties
===================================================================
RCS file: /home/cvs/jakarta-velocity-tools/build.properties,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.properties 10 Jul 2003 15:44:14 -0000 1.7
+++ build.properties 10 Jul 2003 21:18:22 -0000 1.8
@@ -2,15 +2,24 @@
#
# $Id$
#
-base.path=${basedir}
-tools.lib.path=${base.path}/lib
+tools.path=${basedir}
+tools.lib.path=${tools.path}/lib
commons-beanutils.jar=${tools.lib.path}/commons-beanutils.jar
commons-collections.jar=${tools.lib.path}/commons-collections.jar
commons-digester.jar=${tools.lib.path}/commons-digester.jar
dom4j.jar=${tools.lib.path}/dom4j.jar
-jdbc.jar=${tools.lib.path}/jdbc2_0-stdext.jar
servlet.jar=${tools.lib.path}/servlet.jar
struts.jar=${tools.lib.path}/struts.jar
velocity.jar=${tools.lib.path}/velocity-dep-1.3.1.jar
velocity-dvsl.jar=${tools.lib.path}/velocity-dvsl-0.43.jar
+
+# JDK 1.3 users will need to specify this
+# in order to compile VelocityStruts
+#
+#jdbc.jar=${lib.repo}/jdbc2_0-stdext.jar
+
+# JDK 1.3 users can specify this to avoid
+# warnings when building the project javadoc
+#
+#xerces.jar=${lib.repo}/xerces.jar
1.10 +9 -1 jakarta-velocity-tools/README.txt
Index: README.txt
===================================================================
RCS file: /home/cvs/jakarta-velocity-tools/README.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- README.txt 21 Apr 2003 15:09:06 -0000 1.9
+++ README.txt 10 Jul 2003 21:18:22 -0000 1.10
@@ -69,6 +69,14 @@
Please note:
+- To compile VelocityStruts with JDK 1.3, you *must* define a jdbc.jar property
+ somewhere in your build.properties or the build.properties provided with this
+ project.
+
+- When building the javadoc with JDK 1.3, you will get a number of warnings if you
+ do not have a xerces.jar property defined somewhere in the build.properties.
+ However, these warnings can generally be ignored.
+
- During the documentation build process DVSL emits several of the following error
messages. They can be ingnored. A bug report has already been filed.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]