You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avalon.apache.org by Peter Donald <do...@apache.org> on 2001/11/10 23:41:31 UTC

[Phoenix] Candidate release

Hi,

just uploaded a candidate release at

http://jakarta.apache.org/builds/jakarta-avalon/release/phoenix/v4.0a2/

it may be useful  to download it and make sure it works for you. If there is 
no issues I will release it officially tomorrow night.

-- 
Cheers,

Pete

----------------------------------
   "Don't play dumb with me. 
I happen to be an expert at that" 
           - Maxwell Smart
----------------------------------

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


RE: [Phoenix] Candidate release

Posted by Stephen McConnell <mc...@osm.net>.
Pete:

The build woks fine although there are couple of minor things that need
updating:

1. ant.properties.sample contains:

	# The path to xerces.jar
	#xerces.jar=${tools.dir}/lib/xerces.jar

   needs to be changed to:

	# The directory containing the xerces.jar file
	#xerces.dir=${tools.dir}/lib

	# The xerces.jar filename
	#xerces.file=xerces.jar

2. and the README file contans a statement that the distibution includes
   xerces.jar which is potentialy incorrect.  Here is a suggested
replacement:

  Distribution
  ------------
  Distribution contains the following:
  -phoenix-engine.jar       The Phoenix kernel
  -phoenix-loader.jar       Phoenix loader

  Distributions built above JDK1.3 will include the following:
  -xerces.jar               Any SAX2 parser will work. By default xerces is
used.


Cheers, Steve.


> -----Original Message-----
> From: Peter Donald [mailto:donaldp@apache.org]
> Sent: Sunday, 11 November, 2001 01:14
> To: Avalon Developers List
> Subject: Re: [Phoenix] Candidate release
>
>
> Okay - I applied the patch and re-uploaded. Can you check it
> works for you
> now ? ;)
>
>
> On Sun, 11 Nov 2001 10:51, Stephen McConnell wrote:
> > Peter Donald wrote:
> > > Hi,
> > >
> > > whats the problem again? From the looks of it you don't want
> to include
> > > xerces on jdk1.4. Is that because it wont load or something ?
> Maybe to do
> > > with a parser already existing in ext dir or something ?
> >
> > Hi Pete:
> >
> > Under JDK 1.4 you don't need the xerces.jar file because everything
> > compiles and runs fine without it. Under the current Phoenix build
> > environment your MUST provide an xerces.jar file even though it isn't
> > required under 1.4 which means that I am forced to modify the build.xml
> > file locally (which is what I'm trying to avoid).  Something to
> remember is
> > that the environment here at OSM is driven by a top-level build
> file which
> > automates CVS updating from several open-source projects (that's why we
> > don't use the build scripts).
> >
> > Cheers, Steve.
> >
> > p.s. The JDK1.4 installation here is totally standard, nothing has been
> > added to the extensions directory.
> >
> > > On Sun, 11 Nov 2001 09:51, Stephen McConnell wrote:
> > > > Here is the diff on the build.xml for Phoenix to solve the
> xerces.jar
> > > > on JDK1.4 problem.
> > > >
> > > > 	RCS file: /home/cvspublic/jakarta-avalon-phoenix/build.xml,v
> > > > 	retrieving revision 1.73
> > > > 	diff -r1.73 build.xml
> > > > 	72c72,76
> > > > 	<   <property name="xerces.jar"
> value="${lib.dir}/xerces.jar"/>
> > > > 	---
> > > >
> > > > 	>   <property name="xerces.dir" value="${lib.dir}"/>
> > > > 	>   <property name="xerces.file" value="xerces.jar"/>
> > > > 	>   <property name="xerces.jar"
> > >
> > > value="${xerces.dir}/${xerces.file}"/>
> > >
> > > > 	120a125
> > > >
> > > > 	>     <available property="xerces.present" type="file"
> > > >
> > > > file="${xerces.jar}"/>
> > > > 	433c438,443
> > > > 	<     <copy file="${xerces.jar}"
> > >
> > > tofile="${bin.dist.lib}/xerces.jar"/>
> > >
> > > > 	---
> > > >
> > > > 	>     <copy todir="${bin.dist.lib}">
> > > > 	>         <fileset dir="${xerces.dir}">
> > > > 	> 		<include name="${xerces.file}"
> if="xerces.present"/>
> > > > 	> 	  </fileset>
> > > > 	>     </copy>
> > > >
> > > > Steve.
> > > >
> > > > > -----Original Message-----
> > > > > From: Peter Donald [mailto:donaldp@apache.org]
> > > > > Sent: Saturday, 10 November, 2001 23:42
> > > > > To: Avalon Development
> > > > > Subject: [Phoenix] Candidate release
> > > > >
> > > > >
> > > > > Hi,
> > > > >
> > > > > just uploaded a candidate release at
> >
> > http://jakarta.apache.org/builds/jakarta-avalon/release/phoenix/v4.0a2/
> >
> > > > it may be useful  to download it and make sure it works for you.
> > > > If there is
> > > > no issues I will release it officially tomorrow night.
> > > >
> > > > --
> > > > Cheers,
> > > >
> > > > Pete
> > > >
> > > > ----------------------------------
> > > >    "Don't play dumb with me.
> > > > I happen to be an expert at that"
> > > >            - Maxwell Smart
> > > > ----------------------------------
> > > >
> > > > --
> > > > To unsubscribe, e-mail:
> > > > <ma...@jakarta.apache.org>
> > > > For additional commands, e-mail:
> > > > <ma...@jakarta.apache.org>
>
> --
> Cheers,
>
> Pete
>
> ------------------------------------------------------------
>  militant agnostic: i don't know, and you don't know either.
> ------------------------------------------------------------
>
> --
> To unsubscribe, e-mail:
<ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: [Phoenix] Candidate release

Posted by Peter Donald <do...@apache.org>.
Okay - I applied the patch and re-uploaded. Can you check it works for you 
now ? ;)


On Sun, 11 Nov 2001 10:51, Stephen McConnell wrote:
> Peter Donald wrote:
> > Hi,
> >
> > whats the problem again? From the looks of it you don't want to include
> > xerces on jdk1.4. Is that because it wont load or something ? Maybe to do
> > with a parser already existing in ext dir or something ?
>
> Hi Pete:
>
> Under JDK 1.4 you don't need the xerces.jar file because everything
> compiles and runs fine without it. Under the current Phoenix build
> environment your MUST provide an xerces.jar file even though it isn't
> required under 1.4 which means that I am forced to modify the build.xml
> file locally (which is what I'm trying to avoid).  Something to remember is
> that the environment here at OSM is driven by a top-level build file which
> automates CVS updating from several open-source projects (that's why we
> don't use the build scripts).
>
> Cheers, Steve.
>
> p.s. The JDK1.4 installation here is totally standard, nothing has been
> added to the extensions directory.
>
> > On Sun, 11 Nov 2001 09:51, Stephen McConnell wrote:
> > > Here is the diff on the build.xml for Phoenix to solve the xerces.jar
> > > on JDK1.4 problem.
> > >
> > > 	RCS file: /home/cvspublic/jakarta-avalon-phoenix/build.xml,v
> > > 	retrieving revision 1.73
> > > 	diff -r1.73 build.xml
> > > 	72c72,76
> > > 	<   <property name="xerces.jar" value="${lib.dir}/xerces.jar"/>
> > > 	---
> > >
> > > 	>   <property name="xerces.dir" value="${lib.dir}"/>
> > > 	>   <property name="xerces.file" value="xerces.jar"/>
> > > 	>   <property name="xerces.jar"
> >
> > value="${xerces.dir}/${xerces.file}"/>
> >
> > > 	120a125
> > >
> > > 	>     <available property="xerces.present" type="file"
> > >
> > > file="${xerces.jar}"/>
> > > 	433c438,443
> > > 	<     <copy file="${xerces.jar}"
> >
> > tofile="${bin.dist.lib}/xerces.jar"/>
> >
> > > 	---
> > >
> > > 	>     <copy todir="${bin.dist.lib}">
> > > 	>         <fileset dir="${xerces.dir}">
> > > 	> 		<include name="${xerces.file}" if="xerces.present"/>
> > > 	> 	  </fileset>
> > > 	>     </copy>
> > >
> > > Steve.
> > >
> > > > -----Original Message-----
> > > > From: Peter Donald [mailto:donaldp@apache.org]
> > > > Sent: Saturday, 10 November, 2001 23:42
> > > > To: Avalon Development
> > > > Subject: [Phoenix] Candidate release
> > > >
> > > >
> > > > Hi,
> > > >
> > > > just uploaded a candidate release at
>
> http://jakarta.apache.org/builds/jakarta-avalon/release/phoenix/v4.0a2/
>
> > > it may be useful  to download it and make sure it works for you.
> > > If there is
> > > no issues I will release it officially tomorrow night.
> > >
> > > --
> > > Cheers,
> > >
> > > Pete
> > >
> > > ----------------------------------
> > >    "Don't play dumb with me.
> > > I happen to be an expert at that"
> > >            - Maxwell Smart
> > > ----------------------------------
> > >
> > > --
> > > To unsubscribe, e-mail:
> > > <ma...@jakarta.apache.org>
> > > For additional commands, e-mail:
> > > <ma...@jakarta.apache.org>

-- 
Cheers,

Pete

------------------------------------------------------------
 militant agnostic: i don't know, and you don't know either.
------------------------------------------------------------

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


RE: [Phoenix] Candidate release

Posted by Stephen McConnell <mc...@osm.net>.

Peter Donald wrote:
> Hi,
>
> whats the problem again? From the looks of it you don't want to include
> xerces on jdk1.4. Is that because it wont load or something ? Maybe to do
> with a parser already existing in ext dir or something ?

Hi Pete:

Under JDK 1.4 you don't need the xerces.jar file because everything compiles
and runs fine without it. Under the current Phoenix build environment your
MUST provide an xerces.jar file even though it isn't required under 1.4
which means that I am forced to modify the build.xml file locally (which is
what I'm trying to avoid).  Something to remember is that the environment
here at OSM is driven by a top-level build file which automates CVS updating
from several open-source projects (that's why we don't use the build
scripts).

Cheers, Steve.

p.s. The JDK1.4 installation here is totally standard, nothing has been
added to the extensions directory.

> On Sun, 11 Nov 2001 09:51, Stephen McConnell wrote:
> > Here is the diff on the build.xml for Phoenix to solve the xerces.jar on
> > JDK1.4 problem.
> >
> > 	RCS file: /home/cvspublic/jakarta-avalon-phoenix/build.xml,v
> > 	retrieving revision 1.73
> > 	diff -r1.73 build.xml
> > 	72c72,76
> > 	<   <property name="xerces.jar" value="${lib.dir}/xerces.jar"/>
> > 	---
> >
> > 	>   <property name="xerces.dir" value="${lib.dir}"/>
> > 	>   <property name="xerces.file" value="xerces.jar"/>
> > 	>   <property name="xerces.jar"
> value="${xerces.dir}/${xerces.file}"/>
> >
> > 	120a125
> >
> > 	>     <available property="xerces.present" type="file"
> >
> > file="${xerces.jar}"/>
> > 	433c438,443
> > 	<     <copy file="${xerces.jar}"
> tofile="${bin.dist.lib}/xerces.jar"/>
> > 	---
> >
> > 	>     <copy todir="${bin.dist.lib}">
> > 	>         <fileset dir="${xerces.dir}">
> > 	> 		<include name="${xerces.file}" if="xerces.present"/>
> > 	> 	  </fileset>
> > 	>     </copy>
> >
> > Steve.
> >
> > > -----Original Message-----
> > > From: Peter Donald [mailto:donaldp@apache.org]
> > > Sent: Saturday, 10 November, 2001 23:42
> > > To: Avalon Development
> > > Subject: [Phoenix] Candidate release
> > >
> > >
> > > Hi,
> > >
> > > just uploaded a candidate release at
> > >
> > >
http://jakarta.apache.org/builds/jakarta-avalon/release/phoenix/v4.0a2/
> >
> > it may be useful  to download it and make sure it works for you.
> > If there is
> > no issues I will release it officially tomorrow night.
> >
> > --
> > Cheers,
> >
> > Pete
> >
> > ----------------------------------
> >    "Don't play dumb with me.
> > I happen to be an expert at that"
> >            - Maxwell Smart
> > ----------------------------------
> >
> > --
> > To unsubscribe, e-mail:
> > <ma...@jakarta.apache.org>
> > For additional commands, e-mail:
> > <ma...@jakarta.apache.org>

--
Cheers,

Pete

"The ability to quote is a serviceable substitute for wit." -- Maugham

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: [Phoenix] Candidate release

Posted by Peter Donald <do...@apache.org>.
Hi,

whats the problem again? From the looks of it you don't want to include 
xerces on jdk1.4. Is that because it wont load or something ? Maybe to do 
with a parser already existing in ext dir or something ?

On Sun, 11 Nov 2001 09:51, Stephen McConnell wrote:
> Here is the diff on the build.xml for Phoenix to solve the xerces.jar on
> JDK1.4 problem.
>
> 	RCS file: /home/cvspublic/jakarta-avalon-phoenix/build.xml,v
> 	retrieving revision 1.73
> 	diff -r1.73 build.xml
> 	72c72,76
> 	<   <property name="xerces.jar" value="${lib.dir}/xerces.jar"/>
> 	---
>
> 	>   <property name="xerces.dir" value="${lib.dir}"/>
> 	>   <property name="xerces.file" value="xerces.jar"/>
> 	>   <property name="xerces.jar" value="${xerces.dir}/${xerces.file}"/>
>
> 	120a125
>
> 	>     <available property="xerces.present" type="file"
>
> file="${xerces.jar}"/>
> 	433c438,443
> 	<     <copy file="${xerces.jar}" tofile="${bin.dist.lib}/xerces.jar"/>
> 	---
>
> 	>     <copy todir="${bin.dist.lib}">
> 	>         <fileset dir="${xerces.dir}">
> 	> 		<include name="${xerces.file}" if="xerces.present"/>
> 	> 	  </fileset>
> 	>     </copy>
>
> Steve.
>
> > -----Original Message-----
> > From: Peter Donald [mailto:donaldp@apache.org]
> > Sent: Saturday, 10 November, 2001 23:42
> > To: Avalon Development
> > Subject: [Phoenix] Candidate release
> >
> >
> > Hi,
> >
> > just uploaded a candidate release at
> >
> > http://jakarta.apache.org/builds/jakarta-avalon/release/phoenix/v4.0a2/
> >
> > it may be useful  to download it and make sure it works for you.
> > If there is
> > no issues I will release it officially tomorrow night.
> >
> > --
> > Cheers,
> >
> > Pete
> >
> > ----------------------------------
> >    "Don't play dumb with me.
> > I happen to be an expert at that"
> >            - Maxwell Smart
> > ----------------------------------
> >
> > --
> > To unsubscribe, e-mail:
> > <ma...@jakarta.apache.org>
> > For additional commands, e-mail:
> > <ma...@jakarta.apache.org>

-- 
Cheers,

Pete

"The ability to quote is a serviceable substitute for wit." -- Maugham

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


RE: [Phoenix] Candidate release

Posted by Stephen McConnell <mc...@osm.net>.
Here is the diff on the build.xml for Phoenix to solve the xerces.jar on
JDK1.4 problem.

	RCS file: /home/cvspublic/jakarta-avalon-phoenix/build.xml,v
	retrieving revision 1.73
	diff -r1.73 build.xml
	72c72,76
	<   <property name="xerces.jar" value="${lib.dir}/xerces.jar"/>
	---
	>
	>   <property name="xerces.dir" value="${lib.dir}"/>
	>   <property name="xerces.file" value="xerces.jar"/>
	>   <property name="xerces.jar" value="${xerces.dir}/${xerces.file}"/>
	>
	120a125
	>     <available property="xerces.present" type="file"
file="${xerces.jar}"/>
	433c438,443
	<     <copy file="${xerces.jar}" tofile="${bin.dist.lib}/xerces.jar"/>
	---
	>
	>     <copy todir="${bin.dist.lib}">
	>         <fileset dir="${xerces.dir}">
	> 		<include name="${xerces.file}" if="xerces.present"/>
	> 	  </fileset>
	>     </copy>

Steve.


> -----Original Message-----
> From: Peter Donald [mailto:donaldp@apache.org]
> Sent: Saturday, 10 November, 2001 23:42
> To: Avalon Development
> Subject: [Phoenix] Candidate release
>
>
> Hi,
>
> just uploaded a candidate release at
>
> http://jakarta.apache.org/builds/jakarta-avalon/release/phoenix/v4.0a2/
>
> it may be useful  to download it and make sure it works for you.
> If there is
> no issues I will release it officially tomorrow night.
>
> --
> Cheers,
>
> Pete
>
> ----------------------------------
>    "Don't play dumb with me.
> I happen to be an expert at that"
>            - Maxwell Smart
> ----------------------------------
>
> --
> To unsubscribe, e-mail:
> <ma...@jakarta.apache.org>
> For additional commands, e-mail:
> <ma...@jakarta.apache.org>
>


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>