rleland 2002/10/10 10:03:19
Modified: . build.properties.sample
Log:
Update build to look for tomcat 4.0.6 and
Cactus 1.3. Need to made additional code
changes to use cactus 1.4.
Revision Changes Path
1.14 +51 -31 jakarta-struts/build.properties.sample
Index: build.properties.sample
===================================================================
RCS file: /home/cvs/jakarta-struts/build.properties.sample,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- build.properties.sample 3 Oct 2002 02:34:52 -0000 1.13
+++ build.properties.sample 10 Oct 2002 17:03:19 -0000 1.14
@@ -14,90 +14,118 @@
# is at the moment). If build.xml moves to under the "build" subdirectory,
# we will need to add an extra level of "../" to each of these paths.
+# commons-lib.home Where the CVS toplevel commons live
+commons-lib.home=D:/Projects/Apache/jakarta-commons
+# commons-sandbox.home Where the CVS toplevel commons-sandbox live.
+commons-sandbox-lib.home=D:/Projects/Apache/jakarta-commons-sandbox
+# apache.home - Where precompiled jar files form Apache live.
+apache.home=D:/Java/Programs/Apache
+
# The directory containing your binary distribution of Tomcat 4.0 ("Catalina"
# is the servlet container part of this distribution), from CVS module
# "jakarta-tomcat-4.0" at jakarta.apache.org). This is only required
# if you are going to execute the "deploy.catalina" target.
-catalina.home=../jakarta-tomcat-4.0/build
+catalina.home=${apache.home}/jakarta-tomcat-4.0.4
# The JAR file containing version 1.0 (or later) of the Beanutils package
# from the Jakarta Commons project.
-commons-beanutils.jar=/usr/local/commons-beanutils-1.0/commons-beanutils.jar
+
+commons-beanutils.jar=${commons-lib.home}/beanutils/dist/commons-beanutils.jar
# The JAR file containing version 1.0 (or later) of the Collections package
# from the Jakarta Commons project.
-commons-collections.jar=/usr/local/commons-collections-1.0/commons-collections.jar
+commons-collections.jar=${commons-lib.home}/collections/dist/commons-collections.jar
# The JAR file containing version 1.0 (or later) of the DBCP package
# from the Jakarta Commons project.
-commons-dbcp.jar=/usr/local/commons-dbcp-1.0/commons-dbcp.jar
+commons-dbcp.jar=${commons-lib.home}/dbcp/dist/commons-dbcp.jar
# The JAR file containing version 1.0 (or later) of the Digester package
# from the Jakarta Commons project.
-commons-digester.jar=/usr/local/commons-digester-1.0/commons-digester.jar
+commons-digester.jar=${commons-lib.home}/digester/dist/commons-digester.jar
# The JAR file containing version 1.0 (or later) of the FileUpload package
# from the Jakarta Commons project.
-commons-fileupload.jar=/usr/local/commons-fileupload-1.0/commons-fileupload.jar
+commons-fileupload.jar=${commons-sandbox-lib.home}/fileupload/target/commons-fileupload-1.0-dev.jar
# The JAR file containing version 1.0-b1 (or later) of the Lang package
# from the Jakarta Commons project.
-commons-lang.jar=/usr/local/commons-lang-1.0-b1/commons-lang.jar
+commons-lang.jar=${commons-lib.home}/lang/dist/commons-lang-1.0.jar
# The JAR file containing version 1.0 (or later) of the Logging package
# from the Jakarta Commons project.
-commons-logging.jar=/usr/local/commons-logging-1.0/commons-logging.jar
+commons-logging.jar=${commons-lib.home}/logging/dist/commons-logging.jar
# The JAR file containing version 1.0 (or later) of the POOL package
# from the Jakarta Commons project.
-commons-pool.jar=/usr/local/commons-pool-1.0/commons-pool.jar
+commons-pool.jar=${commons-lib.home}/pool/dist/commons-pool.jar
# The JAR file containing version 1.0 (or later) of the Resources package
# from the Jakarta Commons project.
-commons-resources.jar=/usr/local/commons-resources-1.0/commons-resources.jar
+commons-resources.jar=${commons-sandbox-lib.home}/resources/target/commons-resources-1.0-dev.jar
# The JAR file containing a recent version of the SERVICES package
# from the Jakarta Commons project.
-commons-services.jar=/usr/local/commons-services/commons-services.jar
+commons-services.jar=${commons-sandbox-lib.home}/services/dist/commons-services.jar
# The JAR file containing a recent version of the VALIDATOR package
# from the Jakarta Commons project.
-commons-validator.jar=/usr/local/commons-validator/commons-validator.jar
+commons-validator.jar=${commons-lib.home}/validator/dist/commons-validator.jar
# The JAR file containing version 2.06 (or later) of
# the the Jakarta ORO project.
-jakarta-oro.jar=/usr/local/jakarta-oro/jakarta-oro.jar
+jakarta-oro.jar=${apache.home}/jakarta-oro-2.0.6/jakarta-oro-2.0.6.jar
# The JAR file containing the JDBC 2.0 Optional Package extensions API
# (javax.sql). This file will automatically be added to your class path
# when you compile Struts
-jdbc20ext.jar=../jdbc20/jdbc2_0-stdext.jar
+jdbc20ext.jar=../../../Java/Programs/sun/jdbc2_0-stdext.jar
# The JAR file containing the Servlet API classes to compile against (either
# version 2.2 or 2.3)
-servlet.jar=../jakarta-servletapi/lib/servlet.jar
+servlet.jar=${apache.home}/jakarta-tomcat-3.2.3/lib/servlet.jar
# The directory containing your binary distribution of Tomcat 3.2, from CVS
# module "jakarta-tomcat" (and branch "TOMCAT_32") at jakarta.apache.org.
# This is only required if you are going to execute the "deploy.tomcat" target.
-tomcat.home=../build/tomcat
+tomcat.home=${apache.home}/jakarta-tomcat-3.2.3
# The JAR file containing the Xerces parser. This is only required if you are
# going to execute the "deploy.catalina" target.
-xerces.jar=../xml-xerces/xerces.jar
+xerces.jar=${apache.home}/xerces-1_4_4/xerces.jar
+
+# These links to the JSTL jar files are only required for building the
+# Struts-EL contrib library. If they are not present, it will not build that
+# contrib library (although it doesn't prevent you from building it directly in
+# "contrib/struts-el".
+
+jstl.jar =
f:/applis/jakarta-taglibs/jstl-1.0/lib/jstl.jar
+jstl-standard.jar = f:/applis/jakarta-taglibs/jstl-1.0/lib/standard.jar
# Properties related to Struts unit testing
# -----------------------------------------
+# Cactus home
+cactus.home=${apache.home}/jakarta-cactus-13-1.3
+cactus.lib=${cactus.home}/lib
+
# Cactus jar for the Servlet API corresponding to the servlet.jar file
# selected above (either 2.2 or 2.3)
-cactus.jar = ../jakarta-commons/cactus/out/servlet22/dist/lib/commons-cactus.jar
+cactus.jar = ${cactus.lib}/cactus.jar
# Cactus Ant custom tasks jar
-cactus.ant.jar =
../jakarta-commons/cactus/out/servlet22/dist/lib/commons-cactus-ant.jar
+cactus.ant.jar = ${cactus.lib}/cactus-ant.jar
+# AspectJ from Cactus distribution
+aspectjrt.jar = ${cactus.lib}/aspectjrt.jar
+
+# Httpclient from Jakrata-Commons
+commons-httpclient.jar = ${commons-lib.home}/httpclient/dist/commons-httpclient.jar
+
+# Log4J from Jakrata-Commons
+log4j.jar = D:/Java/Programs/Apache/jakarta-log4j-1.2.6/dist/lib/log4j-1.2.6.jar
# JUnit jar file
-junit.jar = f:/applis/jakarta-ant-1.4alpha/lib/junit.jar
+junit.jar = /Java/Lib/Junit3.7/junit.jar
# Servlet engine locations for the tests
@@ -105,13 +133,5 @@
# comment it's home property. For example, if you don't want to run the
# tests on Tomcat 4.0, comment the "tomcat.home.40" property.
-tomcat.home.32 = f:/applis/jakarta-tomcat-3.2.1
-tomcat.home.40 = f:/applis/jakarta-tomcat-4.0-b1
-
-# These links to the JSTL jar files are only required for building the
-# Struts-EL contrib library. If they are not present, it will not build that
-# contrib library (although it doesn't prevent you from building it directly in
-# "contrib/struts-el".
-
-jstl.jar =
f:/applis/jakarta-taglibs/jstl-1.0/lib/jstl.jar
-jstl-standard.jar = f:/applis/jakarta-taglibs/jstl-1.0/lib/standard.jar
+tomcat.home.32 = ${apache.home}/jakarta-tomcat-3.2.3
+tomcat.home.40 = ${apache.home}/jakarta-tomcat-4.0.6
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>