patrickl 2002/08/07 07:14:03
Modified: . BUILDING.txt build.properties.default build.xml
Log:
Add commons-lang to dependency list since commons-dbcp is now dependent on it.
Submitted by: Bob Herrmann (bob@jadn.com)
Revision Changes Path
1.14 +27 -10 jakarta-tomcat-5/BUILDING.txt
Index: BUILDING.txt
===================================================================
RCS file: /home/cvs/jakarta-tomcat-5/BUILDING.txt,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- BUILDING.txt 6 Aug 2002 22:49:52 -0000 1.13
+++ BUILDING.txt 7 Aug 2002 14:14:03 -0000 1.14
@@ -133,7 +133,7 @@
"jakarta-tomcat-catalina"). By default, the build system will try to find
this repository in the "${tomcat.source}/../jakarta-tomcat-catalina"
directory. Set the "catalina.home" property in the build.properties file
- described below (see 28) if it resides in a different directory.
+ described below (see 29) if it resides in a different directory.
* Use Anonymous CVS (as described on the Jakarta web site at
<http://jakarta.apache.org/site/cvsindex.html>, or
@@ -144,7 +144,7 @@
"jakarta-tomcat-connectors"). By default, the build system will try to find
this repository in the "${tomcat.source}/../jakarta-tomcat-connectors"
directory. Set the "jtc.home" property in the build.properties file
- described below (see 28) if it resides in a different directory.
+ described below (see 29) if it resides in a different directory.
* Use Anonymous CVS (as described on the Jakarta web site at
<http://jakarta.apache.org/site/cvsindex.html>, or
@@ -156,7 +156,7 @@
"jakarta-tomcat-jasper/jasper2"). By default, the build system will try to
find this repository in the
"${tomcat.source}/../jakarta-tomcat-jasper/jasper2" directory. Set the
- "jasper.home" property in the build.properties file described below (see 28)
+ "jasper.home" property in the build.properties file described below (see 29)
if it resides in a different directory.
* Use Anonymous CVS (as described on the Jakarta web site at
@@ -168,7 +168,7 @@
"jakarta-servletapi-5"). By default, the build system will try to find
this repository in the "${tomcat.source}/../jakarta-servletapi-5"
directory. Set the "api.home" property in the build.properties
- file described below (see 28) if it resides in a different directory.
+ file described below (see 29) if it resides in a different directory.
(6) Download and Install the Commons Beanutils Binary Distribution
@@ -267,9 +267,9 @@
distribution resides in its own directory.
-(12) Steps (13)-(27) are optional, but are necessary to build a complete binary
+(12) Steps (13)-(28) are optional, but are necessary to build a complete binary
distribution of Tomcat 5. Set the "full.dist" property to "on" in the
- build.properties file (see 28) to build a complete distribution.
+ build.properties file (see 29) to build a complete distribution.
Regular contributors to Tomcat are encouraged to use the complete build
option.
@@ -424,7 +424,6 @@
* Unpack the binary distribution into a convenient location so that the
distribution resides in its own directory.
-
(24) Download and Install the Commons Pool Binary Distribution
NOTE: This step is only required if you wish to use the database JDBC data
@@ -480,8 +479,26 @@
* Execute the downloaded binary distribution a install in the default
installation directory.
+(28) Download and Install the Commons Lang Binary Distribution
+
+NOTE: This step is only required if you wish to use the database JDBC data
+source factory.
+
+* Download a binary distribution of version 1.0-b1 or later from:
+
+ http://jakarta.apache.org/builds/jakarta-commons/release/commons-lang/v1.0-b1/
+
+ On a Windows platform, you will need:
+ commons-lang-1.0-b1.zip
+
+ On a Unix platform, you will need:
+ commons-lang-1.0-b1.tar.gz
+
+* Unpack the binary distribution into a convenient location so that the
+ distribution resides in its own directory.
+
-(28) Customize Build Properties For This Subproject
+(29) Customize Build Properties For This Subproject
Most Jakarta subprojects allow you to customize Ant properties (with default
values defined in the "build.xml" file. This is done by creating a text file
@@ -505,7 +522,7 @@
each developer will have their own version.
-(29) Build A Binary Distribution
+(30) Build A Binary Distribution
Open a command line shell, and issue the following commands:
1.17 +7 -1 jakarta-tomcat-5/build.properties.default
Index: build.properties.default
===================================================================
RCS file: /home/cvs/jakarta-tomcat-5/build.properties.default,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- build.properties.default 6 Aug 2002 22:49:52 -0000 1.16
+++ build.properties.default 7 Aug 2002 14:14:03 -0000 1.17
@@ -147,6 +147,12 @@
commons-modeler.jar=${commons-modeler.lib}/commons-modeler.jar
commons-modeler.loc=http://jakarta.apache.org/builds/jakarta-commons/release/commons-modeler/v1.0/commons-modeler-1.0.tar.gz
+# ----- Commons Lang, version 1.0-b1 or later -----
+commons-lang.home=${base.path}/commons-lang-1.0-b1
+commons-lang.lib=${commons-lang.home}
+commons-lang.jar=${commons-lang.lib}/commons-lang-1.0-b1.jar
+commons-lang.loc=http://jakarta.apache.org/builds/jakarta-commons/release/commons-lang/v1.0-b1/commons-lang-1.0-b1.tar.gz
+
# ----- Commons Pool, version 1.0 or later -----
commons-pool.home=${base.path}/commons-pool-1.0
1.18 +6 -0 jakarta-tomcat-5/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-tomcat-5/build.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- build.xml 4 Aug 2002 15:45:16 -0000 1.17
+++ build.xml 7 Aug 2002 14:14:03 -0000 1.18
@@ -546,6 +546,12 @@
tofile="${commons-daemon-launcher-bootstrap.class}"
/>
+
+ <antcall target="downloadgz">
+ <param name="sourcefile" value="${commons-lang.loc}"/>
+ <param name="destfile" value="${commons-lang.jar}"/>
+ </antcall>
+
<!-- commons-dbcp/pool need something different. -->
<!-- Pool 1.0 -->
<antcall target="downloadgz">
--
To unsubscribe, e-mail: <mailto:tomcat-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-dev-help@jakarta.apache.org>
|