cmlenz 02/03/16 11:42:08
Modified: . Tag: SLIDE_1_0 build.properties.sample build.xml
Log:
- Updated build.properties.sample to reflect the format used in the HEAD
branch, inspired by the corresponding file from tomcat 4.x
- Changed reference to OpenJMX to MX4J
- Updated build.xml accordingly
- Updated year and version in build.xml (1.0.17 for now)
Revision Changes Path
No revision
No revision
1.8.2.1 +82 -43 jakarta-slide/build.properties.sample
Index: build.properties.sample
===================================================================
RCS file: /home/cvs/jakarta-slide/build.properties.sample,v
retrieving revision 1.8
retrieving revision 1.8.2.1
diff -u -r1.8 -r1.8.2.1
--- build.properties.sample 27 Sep 2001 14:26:00 -0000 1.8
+++ build.properties.sample 16 Mar 2002 19:42:08 -0000 1.8.2.1
@@ -6,7 +6,7 @@
# Make any changes you need, and rename this file to
# "build.properties"
#
-# $Id: build.properties.sample,v 1.8 2001/09/27 14:26:00 cmlenz Exp $
+# $Id: build.properties.sample,v 1.8.2.1 2002/03/16 19:42:08 cmlenz Exp $
# -------------------------------------------------------------------
@@ -14,14 +14,19 @@
# CONFIGURATION OPTIONS
# -------------------------------------------------------------------
-# Uncomment the following line to set user authentication on by default
-#authenticate
+# ----- Compile Control Flags -----
+compile.debug=on
+compile.deprecation=off
+compile.optimize=on
+
+# ----- Build Control Flags
# Tell Ant to ignore the system's classpath (dramatically improves the
# probability to get correctly packaged binaries if the build is
# successfull)
#build.sysclasspath=ignore
-
+# Uncomment the following line to set user authentication on by default
+#authenticate
# Uncomment to avoid generating JavaDocs (faster builds)
#skip.javadoc
@@ -30,53 +35,87 @@
# EXTERNAL DEPENDENCIES
# -------------------------------------------------------------------
-# The path that is base for the rest of the paths in this file.
-base.path=/jars
+
+# ----- Default Base Path for Dependent Packages -----
+base.path=/usr/local
+
# [REQUIRED]
-# The directory containing your binary distribution of JAXP and its
-# associated declarations. You can customize the versions of JAXP used
-# for Catalina and Jasper below. If you are using JAXP/1.0, replace
-# "crimson.jar" with "parser.jar"
-jaxp.home=${base.path}/jaxp
-jaxp.parser.jar=crimson.jar
-
-# junit.jar -- JUnit classes (http://junit.org)
-junit.jar=${base.path}/junit.jar
-
-# The directory containing your binary distribution of the Servlet 2.2
-# and JSP 1.2 API classes
-servletapi.home=${base.path}/servlet22
-# jta.jar -- Java Transaction API 1.0.1 (http://java.sun.com/products/jta/)
-jta.jar=${base.path}/jta.jar
+# ----- JAXP 1.1 compliant XML Parser -----
+jaxp.home=${base.path}/jaxp-1.1
+jaxp.lib=${jaxp.home}
+jaxp.jar=${jaxp.lib}/jaxp.jar
+jaxp.parser.jar=${jaxp.lib}/crimson.jar
+
+
+# ----- JUnit, version 3.7 or later -----
+junit.home=${base.path}/junit3.7
+junit.lib=${junit.home}
+junit.jar=${junit.lib}/junit.jar
+
+
+# ----- Jakarta Servlet API Classes (Servlet 2.3 / JSP 1.2) -----
+servlet.home=${base.path}/jakarta-servletapi-4
+servlet.lib=${servlet.home}/lib
+servlet.jar=${servlet.lib}/servlet.jar
+
+
+# ----- Java Transaction API (JTA), version 1.0.1 or later -----
+jta.home=${base.path}/jta-spec1_0_1
+jta.lib=${jta.home}
+jta.jar=${jta.lib}/jta-spec1_0_1.jar
+
+
+# ----- JDOM, version 1.0 b7 or later -----
+jdom.home=${base.path}/jdom-b7
+jdom.lib=${jdom.home}/build
+jdom.jar=${jdom.lib}/jdom.jar
-# jdom.jar -- JDOM (http://www.jdom.org/)
-jdom.jar=${base.path}/jdom.jar
# [OPTIONAL]
-# The directory containing your binary distribution of the Java Naming and
-# Directory Interface (JNDI), version 1.2.1 or later. (You must also add
-# "ldap.jar" into the ${jndi.home}/lib directory if you want to build and
-# use JNDIRealm.)
-jndi.home=${base.path}/jndi
-
-# log4j.jar -- log4j (http://jakarta.apache.org/log4j/)
-log4j.jar=${base.path}/log4j.jar
-
-# The directory containing your binary distribution of Jakarta Struts,
-# version 1.0 (required to build the Slide tag library and the Slide
-# administration webapp).
-struts.home=../jakarta-struts/dist
-
-# The directory containing your binary distribution of the Java Management
-# Extensions (JMX) Reference Implementation, version 1.0 or later
-jmx.home=${base.path}/jmx
-# Catalina distribution directory
-catalina.dist=../jakarta-tomcat-4.0/dist
+# ----- Catalina distribution directory -----
+catalina.dist=${base.path}/jakarta-tomcat-4.1
-# hsqldb.jar -- HSQL Database Engine (http://sourceforge.net/projects/hsqldb/)
+
+# ----- HSQL Database Engine (http://sourceforge.net/projects/hsqldb/) -----
hsqldb.jar=./lib/hsqldb.jar
+
+
+# ----- Java Management Extensions (JMX), JMX RI 1.0.1 or later or MX4J 1.0 or
later -----
+jmx.home=${base.path}/mx4j-1.0
+jmx.lib=${jmx.home}/lib
+jmx.jar=${jmx.lib}/mx4j.jar
+
+
+# ----- Java Naming and Directory Interface (JNDI), version 1.2 or later -----
+jndi.home=${base.path}/jndi-1.2.1
+jndi.lib=${jndi.home}/lib
+jndi.jar=${jndi.lib}/jndi.jar
+
+
+# ----- JSP Standard Tag Library, version 1.0 EA 3 or later -----
+taglibs.home=${base.path}/jakarta-taglibs
+jstl.home=${taglibs.home}/jstl-ea3
+jstl-tlds.home=${jstl.home}
+jstl.lib=${jstl.home}
+js.jar=${jstl.lib}/js.jar
+jstl.jar=${jstl.lib}/jstl.jar
+standard.jar=${jstl.lib}/standard.jar
+
+
+# ----- log4j (http://jakarta.apache.org/log4j/) -----
+log4j.home=${base.path}/jakarta-log4j-1.1.3
+log4j.lib=${log4j.home}/dist/lib
+log4j.jar=${log4j.lib}/log4j.jar
+
+
+# ----- Struts, version 1.0 or later -----
+struts.home=${base.path}/jakarta-struts-1.0.1
+struts.lib=${struts.home}/lib
+struts.jar=${struts.lib}/struts.jar
+
+
1.135.2.3 +6 -7 jakarta-slide/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-slide/build.xml,v
retrieving revision 1.135.2.2
retrieving revision 1.135.2.3
diff -u -r1.135.2.2 -r1.135.2.3
--- build.xml 27 Jan 2002 16:06:55 -0000 1.135.2.2
+++ build.xml 16 Mar 2002 19:42:08 -0000 1.135.2.3
@@ -24,8 +24,8 @@
<!-- Project Properties -->
<!-- =================================================================== -->
<property name="name" value="Jakarta-Slide" />
- <property name="year" value="2001" />
- <property name="version" value="1.0.16" />
+ <property name="year" value="2002" />
+ <property name="version" value="1.0.17" />
<property name="project" value="jakarta-slide" />
<property name="final.name" value="${project}-${version}" />
<property name="final-src.name" value="${project}-src-${version}" />
@@ -35,10 +35,10 @@
<!-- Dependencies Properties -->
<!-- =================================================================== -->
<property name="catalina.dist" value="../jakarta-tomcat-4.0/dist" />
- <property name="servletapi.home"
+ <property name="servlet.home"
value="../jakarta-servletapi/" />
- <property name="servlet.jar"
- value="${servletapi.home}/lib/servlet.jar" />
+ <property name="servlet.jar"
+ value="${servlet.home}/lib/servlet.jar" />
<property name="jdom.home" value="./lib"/>
<property name="jdom.jar" value="${jdom.home}/jdom.jar"/>
<property name="jaxp.home" value="../jaxp"/>
@@ -426,8 +426,7 @@
<!-- =================================================================== -->
<!-- Prepare -->
<!-- =================================================================== -->
- <target name="prepare" depends="detect,prepare-servlet22,
- prepare-servlet23">
+ <target name="prepare" depends="detect,prepare-servlet22,prepare-servlet23">
<mkdir dir="${slide.build}"/>
<mkdir dir="${slide.build}/classes"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>