glenn 01/06/25 06:34:58
Modified: . build.properties.sample
Log:
Update default paths for jar files
Revision Changes Path
1.3 +26 -7 jakarta-taglibs/build.properties.sample
Index: build.properties.sample
===================================================================
RCS file: /home/cvs/jakarta-taglibs/build.properties.sample,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- build.properties.sample 2001/05/23 10:05:02 1.2
+++ build.properties.sample 2001/06/25 13:34:57 1.3
@@ -8,23 +8,26 @@
#
# -----------------------------------------------------------------------------
+# The base directory of your jakarta-taglibs distribution
+base.dir=./
+
# servlet.jar must be defined to sucessfully build taglibs
# The default jar file for the Servlet and JSP API classes.
-servlet.jar=../jakarta-servletapi/dist/lib/servlet.jar
+servlet.jar=${base.dir}/../jakarta-servletapi/dist/lib/servlet.jar
# The default jar file for the Servlet 2.2 and JSP 1.1 API classes.
# Optional, could be used by taglibs that explicitely need
# Servlet 2.2 and JSP 1.1 API classes.
# The Servlet 2.2 and JSP 1.1 jar can be obtained from
# http://jakarta.apache.org/tomcat/ as a Tomcat 3.2 binary download.
-servlet22.jar=../jakarta-servletapi/dist/lib/servlet.jar
+servlet22.jar=${base.dir}/../jakarta-servletapi/dist/lib/servlet.jar
# The default jar file for the Servlet 2.3 and JSP 1.2 API classes.
# Used for building taglibs which use JSP 1.2 features.
# The Servlet 2.3 and JSP 1.2 jar can be obtained from
# http://jakarta.apache.org/tomcat/ as a Tomcat 4.0 binary download.
-servlet23.jar=../jakarta-servletapi-4/dist/lib/servlet.jar
+servlet23.jar=${base.dir}/../jakarta-servletapi-4/dist/lib/servlet.jar
# The remaining properties are for supporting taglibs which
# require the use of additional Java API's.
@@ -58,7 +61,7 @@
# Both the xsl taglib and the ultradev4 ctlx require xerces as their
# XML API.
-# http://xml.apache.org/xerces/
+# http://xml.apache.org/xerces-j/
# Uncomment the below and set the path to the xerces.jar
#xerces.jar=
@@ -70,7 +73,7 @@
# Version 2 of xerces
# http://xml.apache.org/xerces
# Uncomment the below and set the path to version 2 xerces.jar
-#xalan2.jar=
+#xerces2.jar=
# regexp requires the jakarta-oro 2.0 regular expression API.
# http://jakarta.apache.org/oro/
@@ -86,12 +89,17 @@
# Uncomment the below and set the path to dom4j.jar
#dom4j.jar=
+# bsf requires the Bean Scripting Framework from
+# http://oss.software.ibm.com/developerworks/projects/bsf
+# Uncomment the below and set the path to bsf.jar
+#bsf.jar=
+
# xtags requires a JAXP 1.1 compatible XML parser
# http://java.sun.com/products/xml/
# Uncomment the below and set the path to jaxp.jar
-#jaxp.jar
+#jaxp.jar=
# Uncomment the below and set the path to crimson.jar
-#crimson.jar
+#crimson.jar=
# mailer requires the JavaMail 1.2 API
# http://java.sun.com/products/javamail/
@@ -103,3 +111,14 @@
# need to download the JNDI API from Sun and install it in your
# $JAVA_HOME/jre/lib/ext directory.
# http://java.sun.com/products/jndi/
+
+#
+# PROJECT STANDARD PROPERTIES
+#
+# The following property values reflect the standard directory organization
+# for the jakarta-taglibs project, and should not be changed or overridden.
+#
+# build.dir Base directory for build targets
+# dist.dir Base directory for distribution targets
+build.dir = ${base.dir}/build
+dist.dir = ${base.dir}/dist