hammant 2002/10/28 11:47:50
Modified: . Tag: RELEASE_402-branch BUILDING.txt build.xml
project.properties
src/xdocs Tag: RELEASE_402-branch changes.xml
Log:
Mx4J upgraded to 1.1.1. Prep for 4.0.2
Revision Changes Path
No revision
No revision
1.7.2.1 +12 -32 jakarta-avalon-phoenix/BUILDING.txt
Index: BUILDING.txt
===================================================================
RCS file: /home/cvs/jakarta-avalon-phoenix/BUILDING.txt,v
retrieving revision 1.7
retrieving revision 1.7.2.1
diff -u -r1.7 -r1.7.2.1
--- BUILDING.txt 21 Mar 2002 08:36:13 -0000 1.7
+++ BUILDING.txt 28 Oct 2002 19:47:49 -0000 1.7.2.1
@@ -6,12 +6,12 @@
that implements a Service API similar to the API under development in the JSR 111,
Services Framework. In order to build a binary distribution version of the
container from a source distribution, you must have a Java Development Kit (JDK)
-for version 1.3 (or later) downloaded and installed (version 1.3.1 recommended),
+for version 1.3.1 (or later) downloaded and installed (version 1.4.1 recommended),
and do the following:
(0) Download and Install a Java Development Kit
-* Download a Java Development Kit (JDK) release (version 1.3 or later) from:
+* Download a Java Development Kit (JDK) release (version 1.3.1 or later) from:
http://java.sun.com/j2se/
@@ -23,59 +23,39 @@
(1) Download and Install the Ant Binary Distribution
-* Download a binary distribution of Ant 1.4.1 from:
+* Download a binary distribution of Ant 1.5.1 from:
- http://jakarta.apache.org/builds/jakarta-ant/release/v1.4.1/bin/
+ http://jakarta.apache.org/builds/jakarta-ant/release/v1.5.1/bin/
On a Windows platform, you will need:
- jakarta-ant-1.4.1-bin.zip
- jakarta-ant-1.4.1-optional.jar
+ jakarta-ant-1.5.1-bin.zip
On a Unix platform, you will need:
- jakarta-ant-1.4.1-bin.tar.gz
- jakarta-ant-1.4.1-optional.jar
+ jakarta-ant-1.5.1-bin.tar.gz
* Unpack the binary distribution into a convenient location so that the
Ant release resides in its own directory (conventionally named
- "jakarta-ant-1.4.1"). For the purposes of the remainder of this document,
+ "jakarta-ant-1.5.1"). For the purposes of the remainder of this document,
the symbolic name "${ant.home}" is used to refer to the full pathname of
the release directory.
-* Copy the file "jakarta-ant-1.4.1-optional.jar", downloaded above, into
- the directory "${ant.home}/lib". This makes available several Ant
- extension commands that are commonly required when building Jakarta
- based projects.
-
* Modify the PATH environment variable to include directory
"${ant.home}/bin" in its list. This makes the "ant" command line script
available, which will be used to actually perform the build.
-(2) Download and Install the JMX 1.0 Reference Implementation
-
-NOTE: This step is only required if you wish to build the Config/Admin
-component of Phoenix.
-
-* Download the JMX Instrumentation and Agent Reference Implementation
- (version 1.0 or later) from
-
- http://java.sun.com/products/JavaManagement/download.html
-
-* Unpack the reference implementation into a convenient location so that
- it resides in its own subdirectory.
-
-(3) Download and Install the Java Service Wrapper 2.2.2 Implementation
+(2) Download and Install the Java Service Wrapper 2.2.8 Implementation
NOTE: This step is only required if you wish to allow the Phoenix server
to be accessible as a win32 Service or a unix daemon.
-* Download the Java Service Wrapper (version 2.2.2 or later) from
+* Download the Java Service Wrapper (version 2.2.8 or later) from
http://wrapper.sourceforge.net/
* Unpack the product into a convenient location so that it resides in
its own subdirectory.
-(4) Download and Install Checkstyle, 2.1 or later (OPTIONAL)
+(3) Download and Install Checkstyle, 2.1 or later (OPTIONAL)
NOTE: This is only required if you wish to generate reports regarding code style.
@@ -86,7 +66,7 @@
* Unpack the package into a convenient location so that it resides in its
own subdirectory.
-(5) Customize Build Properties For This Subproject
+(4) 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
@@ -109,7 +89,7 @@
repository. This file is local to your own development environment, and
each developer will have their own version.
-(6) Build A Binary Distribution
+(5) Build A Binary Distribution
Open a command line shell, and issue the following commands:
1.164.2.11 +3 -3 jakarta-avalon-phoenix/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-phoenix/build.xml,v
retrieving revision 1.164.2.10
retrieving revision 1.164.2.11
diff -u -r1.164.2.10 -r1.164.2.11
--- build.xml 15 Oct 2002 22:33:11 -0000 1.164.2.10
+++ build.xml 28 Oct 2002 19:47:49 -0000 1.164.2.11
@@ -63,8 +63,8 @@
<property name="tools.jar" value="${java.home}/../lib/tools.jar"/>
<!-- Invoke 'ant get-mx4j' to get these -->
- <property name="mx4j.jar" value="mx4j/mx4j-1.1.1-beta1/lib/mx4j-jmx.jar"/>
- <property name="mx4j-tools.jar"
value="mx4j/mx4j-1.1.1-beta1/lib/mx4j-tools.jar"/>
+ <property name="mx4j.jar" value="mx4j/mx4j-1.1.1/lib/mx4j-jmx.jar"/>
+ <property name="mx4j-tools.jar" value="mx4j/mx4j-1.1.1/lib/mx4j-tools.jar"/>
<path id="project.class.path">
<pathelement location="${xerces.jar}"/>
@@ -136,7 +136,7 @@
<!-- For licensing reasons, we are unable to put these Jars in our CVS or
source distributions. -->
<target name="get-mx4j">
<mkdir dir="mx4j"/>
- <get
src="http://telia.dl.sourceforge.net/sourceforge/mx4j/mx4j-1.1.1-beta1.tar.gz"
+ <get
src="http://telia.dl.sourceforge.net/sourceforge/mx4j/mx4j-1.1.1.tar.gz"
dest="mx4j/mx4j.tar.gz"
verbose="true"
usetimestamp="true"/>
1.6.2.3 +3 -3 jakarta-avalon-phoenix/project.properties
Index: project.properties
===================================================================
RCS file: /home/cvs/jakarta-avalon-phoenix/project.properties,v
retrieving revision 1.6.2.2
retrieving revision 1.6.2.3
diff -u -r1.6.2.2 -r1.6.2.3
--- project.properties 22 Sep 2002 09:58:05 -0000 1.6.2.2
+++ project.properties 28 Oct 2002 19:47:49 -0000 1.6.2.3
@@ -4,11 +4,11 @@
name=phoenix
Name=Phoenix
-version=4.0.1
-year=1999-2001
+version=4.0.2
+year=1999-2002
status=final
release=fcs
-short.version=4.0.1
+short.version=4.0.2
cvs=jakarta-avalon-phoenix
# This potentially overridden by the same property in ant.properties
No revision
No revision
1.16.2.9 +16 -0 jakarta-avalon-phoenix/src/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-phoenix/src/xdocs/changes.xml,v
retrieving revision 1.16.2.8
retrieving revision 1.16.2.9
diff -u -r1.16.2.8 -r1.16.2.9
--- changes.xml 16 Sep 2002 22:07:15 -0000 1.16.2.8
+++ changes.xml 28 Oct 2002 19:47:49 -0000 1.16.2.9
@@ -16,6 +16,22 @@
<author name="Eung-ju Park" email="[EMAIL PROTECTED]" id="EP"/>
<author name="David W." email="[EMAIL PROTECTED]" id="DW"/>
</devs>
+<release version="4.0.2" date="October 28, 2002">
+ <action dev="PH" type="change">
+ MX4J JMX upgraded to 1.1.1
+ </action>
+</release>
+<release version="4.0.1" date="October 20, 2002">
+ <action dev="PD" type="change">
+ Fix for backwards Logging. Some backwards compatability lost
+ </action>
+ <action dev="PH" type="change">
+ MX4J JMX upgraded to 1.1.1 beta1.
+ </action>
+ <action dev="PH" type="change">
+ Some work on the wrapper for Unix.
+ </action>
+</release>
<release version="4.0" date="September 16, 2002">
<action dev="PD" type="add">
Small bug fixes. Some work on documentation.
--
To unsubscribe, e-mail: <mailto:avalon-cvs-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:avalon-cvs-help@;jakarta.apache.org>