RE: b10 werkz changes break reactor

2003-07-16 Thread Brett Porter
Strange that I never saw it through all the time of using b9 though? Maybe
the problem already existed and was aggravated and exposed to me by the
werkz changes?

Haven't had a chance to look at it closer just yet.

- Brett

-Original Message-
From: James CE Johnson [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 16 July 2003 10:36 PM
To: [EMAIL PROTECTED]
Subject: RE: b10 werkz changes break reactor


> It appears to be a problem with executing more than one goal at a time:
>
> maven clean cdit:build fails
> maven clean; maven cdit:build works

FWIW I've been getting this behavior on and off with a not-quite-final
version of b9 for quite some time.

>
> This isn't always the case (other projects have just the cdit:build
> fail), so there is definitely more to it - but I'm leaving it at that
> until I can try it out at home.
>
> Cheers,
> Brett
>
> -Original Message-
> From: Jason van Zyl [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, 16 July 2003 11:12 AM
> To: Maven Developers List
> Subject: Re: b10 werkz changes break reactor
>
>
> On Tue, 2003-07-15 at 20:35, Brett Porter wrote:
>> Hi,
>>
>> It seems some of the changes made to werkz late in b10 have broken the
>> reactor in some cases.
>> I was using a build from CVS of about 1 or 2 weeeks ago that was fine,
>> but rolling out b10 has caused a lot of "unknown goal" exceptions when
>> running under reactor. Changing into the appropriate dir and running
>> the goal has
> no
>> problems.
>
> Please make sure nothing has changed on your end. The reactor build for
> Maven itself is always the final test for the reactor and I always give
> the Plexus components a whirl.
>
>> The goal is in my own plugin.
>>
>> Debugging it I have seen WerkzProject return "null" to the eachGoal
>> var in the plugin manager, but I can't debug werkz as the source at
>> cvs.werkz.sf.net is out of date. I'm guessing the werkz that got
>> dropped with b10 is a build from somewhere else?
>>
>> Can someone help me out getting that source? For now, I'm having to
>> roll back to beta 9 :(
>>
>> Cheers,
>> Brett
>>
>> ~*~*~*~*~*~*~
>> Brett Porter - Web Developer
>> f2 Network ~ everything essential
>> Ph: +61 2 8596 4437
>> Email: [EMAIL PROTECTED]
> --
> jvz.
>
> Jason van Zyl
> [EMAIL PROTECTED]
> http://tambora.zenplex.org
>
> In short, man creates for himself a new religion of a rational
> and technical order to justify his work and to be justified in it.
>
>   -- Jacques Ellul, The Technological Society
>
>
> - To
> unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: b10 werkz changes break reactor

2003-07-16 Thread James CE Johnson
> It appears to be a problem with executing more than one goal at a time:
>
> maven clean cdit:build fails
> maven clean; maven cdit:build works

FWIW I've been getting this behavior on and off with a not-quite-final
version of b9 for quite some time.

>
> This isn't always the case (other projects have just the cdit:build
> fail), so there is definitely more to it - but I'm leaving it at that
> until I can try it out at home.
>
> Cheers,
> Brett
>
> -Original Message-
> From: Jason van Zyl [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, 16 July 2003 11:12 AM
> To: Maven Developers List
> Subject: Re: b10 werkz changes break reactor
>
>
> On Tue, 2003-07-15 at 20:35, Brett Porter wrote:
>> Hi,
>>
>> It seems some of the changes made to werkz late in b10 have broken the
>> reactor in some cases.
>> I was using a build from CVS of about 1 or 2 weeeks ago that was fine,
>> but rolling out b10 has caused a lot of "unknown goal" exceptions when
>> running under reactor. Changing into the appropriate dir and running
>> the goal has
> no
>> problems.
>
> Please make sure nothing has changed on your end. The reactor build for
> Maven itself is always the final test for the reactor and I always give
> the Plexus components a whirl.
>
>> The goal is in my own plugin.
>>
>> Debugging it I have seen WerkzProject return "null" to the eachGoal
>> var in the plugin manager, but I can't debug werkz as the source at
>> cvs.werkz.sf.net is out of date. I'm guessing the werkz that got
>> dropped with b10 is a build from somewhere else?
>>
>> Can someone help me out getting that source? For now, I'm having to
>> roll back to beta 9 :(
>>
>> Cheers,
>> Brett
>>
>> ~*~*~*~*~*~*~
>> Brett Porter - Web Developer
>> f2 Network ~ everything essential
>> Ph: +61 2 8596 4437
>> Email: [EMAIL PROTECTED]
> --
> jvz.
>
> Jason van Zyl
> [EMAIL PROTECTED]
> http://tambora.zenplex.org
>
> In short, man creates for himself a new religion of a rational
> and technical order to justify his work and to be justified in it.
>
>   -- Jacques Ellul, The Technological Society
>
>
> - To
> unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: b10 werkz changes break reactor

2003-07-15 Thread bob mcwhirter
On Wed, 16 Jul 2003, Ben Walding wrote:

> There was a change in the semantics of werkz / attainGoal.I don't 
> know the specifics of it, but it was supposed to allow finegrained 
> control of prerequisite handling.
> 
> Looking for code that added session  as a parameter to the attain tags I 
> think.
> 
> Bob / Jason will probably know more.
> 
> Whether this is at all related ... no idea...

Default behaviour hasn't changed.  I think what we did (Peter Lynch could
probably tell us in more detail, since he's the one who wanted it)
a @session attribute so you -could- share the global session.

Jason's also added, somewhere along the way, dunno if used in b10,
some goal/callback listener thingies.

-bob


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: b10 werkz changes break reactor

2003-07-15 Thread Ben Walding
There was a change in the semantics of werkz / attainGoal.I don't 
know the specifics of it, but it was supposed to allow finegrained 
control of prerequisite handling.

Looking for code that added session  as a parameter to the attain tags I 
think.

Bob / Jason will probably know more.

Whether this is at all related ... no idea...

Brett Porter wrote:

It appears to be a problem with executing more than one goal at a time:

maven clean cdit:build fails
maven clean; maven cdit:build works
This isn't always the case (other projects have just the cdit:build fail),
so there is definitely more to it - but I'm leaving it at that until I can
try it out at home.
Cheers,
Brett
-Original Message-
From: Jason van Zyl [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 16 July 2003 11:12 AM
To: Maven Developers List
Subject: Re: b10 werkz changes break reactor
On Tue, 2003-07-15 at 20:35, Brett Porter wrote:
 

Hi,

It seems some of the changes made to werkz late in b10 have broken the
reactor in some cases.
I was using a build from CVS of about 1 or 2 weeeks ago that was fine, but
rolling out b10 has caused a lot of "unknown goal" exceptions when running
under reactor. Changing into the appropriate dir and running the goal has
   

no
 

problems.
   

Please make sure nothing has changed on your end. The reactor build for
Maven itself is always the final test for the reactor and I always give
the Plexus components a whirl.
 

The goal is in my own plugin.

Debugging it I have seen WerkzProject return "null" to the eachGoal var in
the plugin manager, but I can't debug werkz as the source at
cvs.werkz.sf.net is out of date. I'm guessing the werkz that got dropped
with b10 is a build from somewhere else?
Can someone help me out getting that source? For now, I'm having to roll
back to beta 9 :(
Cheers,
Brett
~*~*~*~*~*~*~
Brett Porter - Web Developer
f2 Network ~ everything essential
Ph: +61 2 8596 4437
Email: [EMAIL PROTECTED]
   



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: b10 werkz changes break reactor

2003-07-15 Thread Brett Porter
It appears to be a problem with executing more than one goal at a time:

maven clean cdit:build fails
maven clean; maven cdit:build works

This isn't always the case (other projects have just the cdit:build fail),
so there is definitely more to it - but I'm leaving it at that until I can
try it out at home.

Cheers,
Brett

-Original Message-
From: Jason van Zyl [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 16 July 2003 11:12 AM
To: Maven Developers List
Subject: Re: b10 werkz changes break reactor


On Tue, 2003-07-15 at 20:35, Brett Porter wrote:
> Hi,
> 
> It seems some of the changes made to werkz late in b10 have broken the
> reactor in some cases.
> I was using a build from CVS of about 1 or 2 weeeks ago that was fine, but
> rolling out b10 has caused a lot of "unknown goal" exceptions when running
> under reactor. Changing into the appropriate dir and running the goal has
no
> problems.

Please make sure nothing has changed on your end. The reactor build for
Maven itself is always the final test for the reactor and I always give
the Plexus components a whirl.

> The goal is in my own plugin.
> 
> Debugging it I have seen WerkzProject return "null" to the eachGoal var in
> the plugin manager, but I can't debug werkz as the source at
> cvs.werkz.sf.net is out of date. I'm guessing the werkz that got dropped
> with b10 is a build from somewhere else?
> 
> Can someone help me out getting that source? For now, I'm having to roll
> back to beta 9 :(
> 
> Cheers,
> Brett
> 
> ~*~*~*~*~*~*~
> Brett Porter - Web Developer
> f2 Network ~ everything essential
> Ph: +61 2 8596 4437
> Email: [EMAIL PROTECTED]
-- 
jvz.

Jason van Zyl
[EMAIL PROTECTED]
http://tambora.zenplex.org

In short, man creates for himself a new religion of a rational
and technical order to justify his work and to be justified in it.
  
  -- Jacques Ellul, The Technological Society


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: b10 werkz changes break reactor

2003-07-15 Thread Brett Porter
I've tried cleaning out my repo, plugin cache, and running again under CVS
HEAD and it isn't working. It does work on some projects which is the
strange thing.

b9 is still working fine after doing all of the above.

It may not be a werkz thing, but I'll see how I go tracking it down with the
werkz source in hand.

Cheers,
Brett

-Original Message-
From: Jason van Zyl [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 16 July 2003 11:12 AM
To: Maven Developers List
Subject: Re: b10 werkz changes break reactor


On Tue, 2003-07-15 at 20:35, Brett Porter wrote:
> Hi,
> 
> It seems some of the changes made to werkz late in b10 have broken the
> reactor in some cases.
> I was using a build from CVS of about 1 or 2 weeeks ago that was fine, but
> rolling out b10 has caused a lot of "unknown goal" exceptions when running
> under reactor. Changing into the appropriate dir and running the goal has
no
> problems.

Please make sure nothing has changed on your end. The reactor build for
Maven itself is always the final test for the reactor and I always give
the Plexus components a whirl.

> The goal is in my own plugin.
> 
> Debugging it I have seen WerkzProject return "null" to the eachGoal var in
> the plugin manager, but I can't debug werkz as the source at
> cvs.werkz.sf.net is out of date. I'm guessing the werkz that got dropped
> with b10 is a build from somewhere else?
> 
> Can someone help me out getting that source? For now, I'm having to roll
> back to beta 9 :(
> 
> Cheers,
> Brett
> 
> ~*~*~*~*~*~*~
> Brett Porter - Web Developer
> f2 Network ~ everything essential
> Ph: +61 2 8596 4437
> Email: [EMAIL PROTECTED]
-- 
jvz.

Jason van Zyl
[EMAIL PROTECTED]
http://tambora.zenplex.org

In short, man creates for himself a new religion of a rational
and technical order to justify his work and to be justified in it.
  
  -- Jacques Ellul, The Technological Society


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: b10 werkz changes break reactor

2003-07-15 Thread Jason van Zyl
On Tue, 2003-07-15 at 20:35, Brett Porter wrote:
> Hi,
> 
> It seems some of the changes made to werkz late in b10 have broken the
> reactor in some cases.
> I was using a build from CVS of about 1 or 2 weeeks ago that was fine, but
> rolling out b10 has caused a lot of "unknown goal" exceptions when running
> under reactor. Changing into the appropriate dir and running the goal has no
> problems.

Please make sure nothing has changed on your end. The reactor build for
Maven itself is always the final test for the reactor and I always give
the Plexus components a whirl.

> The goal is in my own plugin.
> 
> Debugging it I have seen WerkzProject return "null" to the eachGoal var in
> the plugin manager, but I can't debug werkz as the source at
> cvs.werkz.sf.net is out of date. I'm guessing the werkz that got dropped
> with b10 is a build from somewhere else?
> 
> Can someone help me out getting that source? For now, I'm having to roll
> back to beta 9 :(
> 
> Cheers,
> Brett
> 
> ~*~*~*~*~*~*~
> Brett Porter - Web Developer
> f2 Network ~ everything essential
> Ph: +61 2 8596 4437
> Email: [EMAIL PROTECTED]
-- 
jvz.

Jason van Zyl
[EMAIL PROTECTED]
http://tambora.zenplex.org

In short, man creates for himself a new religion of a rational
and technical order to justify his work and to be justified in it.
  
  -- Jacques Ellul, The Technological Society


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: b10 werkz changes break reactor

2003-07-15 Thread bob mcwhirter
> Debugging it I have seen WerkzProject return "null" to the eachGoal var in
> the plugin manager, but I can't debug werkz as the source at
> cvs.werkz.sf.net is out of date. I'm guessing the werkz that got dropped
> with b10 is a build from somewhere else?

cvs.codehaus.org:/cvsroot/werkz co werkz

-bob


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: b10

2003-07-14 Thread Siegfried Göschl
Oops, my fault was going to http://www.maven.org instead of
http://maven.apache.org

An utterly dumb

Siegfried Goeschl

On 14 Jul 2003 at 17:45, nicolas frank wrote:

> wahhhooo... I can see you did not follow maven news for a while... ;-)
> Now maven site is located at http://maven.apache.org, where you can
> find all you need.
>
> - Original Message -
> From: "Siegfried Goeschl" <[EMAIL PROTECTED]>
> To: "Maven Developers List" <[EMAIL PROTECTED]>
> Sent: Monday, July 14, 2003 5:36 PM
> Subject: Re: b10
>
>
> > Sorry for seeming completely dumb but I was not following the MAVEN
> Mailing
> > Lists for a while but
> >
> > +) http://jakarta.apache.org/builds/jakarta-turbine-maven/release/
> > +only
> > shows Beta 8
> >
> > +) Current Status says the Maven B9 is currently worked on
> >
> > +) The link to http://cvs.apache.org/viewcvs/jakarta-turbine-maven/
> > +is
> > broken
> >
> > Cheers
> >
> > Siegfried Goeschl
> >
> > ----- Original Message -
> > From: "Incze Lajos" <[EMAIL PROTECTED]>
> > To: "Maven Developers List" <[EMAIL PROTECTED]>
> > Sent: Monday, July 14, 2003 5:04 PM
> > Subject: Re: b10
> >
> >
> > > On Mon, Jul 14, 2003 at 04:21:47PM +0200, Siegfried G”schl wrote:
> > > > Hi folks,
> > > >
> > > > did I miss Maven B9 or was this release dropped ?!
> > > >
> > > > Siegfried Goeschl
> > > > CTO
> > >
> > > You missed it. It's been out for monthes.
> > >
> > > incze
> > >
> > > --
> > > --- To unsubscribe, e-mail: [EMAIL PROTECTED] For
> > > additional commands, e-mail: [EMAIL PROTECTED]
> > >
> >
> >
> > 
> > - To unsubscribe, e-mail: [EMAIL PROTECTED] For
> > additional commands, e-mail: [EMAIL PROTECTED]
> >
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.480 / Virus Database: 276 - Release Date: 12/05/2003
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED] For
> additional commands, e-mail: [EMAIL PROTECTED]
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: b10

2003-07-14 Thread nicolas frank
wahhhooo... I can see you did not follow maven news for a while... ;-) Now
maven site is located at http://maven.apache.org, where you can find all you
need.

- Original Message - 
From: "Siegfried Goeschl" <[EMAIL PROTECTED]>
To: "Maven Developers List" <[EMAIL PROTECTED]>
Sent: Monday, July 14, 2003 5:36 PM
Subject: Re: b10


> Sorry for seeming completely dumb but I was not following the MAVEN
Mailing
> Lists for a while but
>
> +) http://jakarta.apache.org/builds/jakarta-turbine-maven/release/ only
> shows Beta 8
>
> +) Current Status says the Maven B9 is currently worked on
>
> +) The link to http://cvs.apache.org/viewcvs/jakarta-turbine-maven/ is
> broken
>
> Cheers
>
> Siegfried Goeschl
>
> - Original Message - 
> From: "Incze Lajos" <[EMAIL PROTECTED]>
> To: "Maven Developers List" <[EMAIL PROTECTED]>
> Sent: Monday, July 14, 2003 5:04 PM
> Subject: Re: b10
>
>
> > On Mon, Jul 14, 2003 at 04:21:47PM +0200, Siegfried Göschl wrote:
> > > Hi folks,
> > >
> > > did I miss Maven B9 or was this release dropped ?!
> > >
> > > Siegfried Goeschl
> > > CTO
> >
> > You missed it. It's been out for monthes.
> >
> > incze
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.480 / Virus Database: 276 - Release Date: 12/05/2003


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: b10

2003-07-14 Thread James Macgill
At 05:36 PM 7/14/2003 +0200, you wrote:
Sorry for seeming completely dumb but I was not following the MAVEN Mailing
Lists for a while but
+) http://jakarta.apache.org/builds/jakarta-turbine-maven/release/ only
shows Beta 8
Maven is now a top-level project on apache.

Update your links to start with:
http://maven.apache.org
James 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: b10

2003-07-14 Thread Siegfried Goeschl
Sorry for seeming completely dumb but I was not following the MAVEN Mailing
Lists for a while but

+) http://jakarta.apache.org/builds/jakarta-turbine-maven/release/ only
shows Beta 8

+) Current Status says the Maven B9 is currently worked on

+) The link to http://cvs.apache.org/viewcvs/jakarta-turbine-maven/ is
broken

Cheers

Siegfried Goeschl

- Original Message - 
From: "Incze Lajos" <[EMAIL PROTECTED]>
To: "Maven Developers List" <[EMAIL PROTECTED]>
Sent: Monday, July 14, 2003 5:04 PM
Subject: Re: b10


> On Mon, Jul 14, 2003 at 04:21:47PM +0200, Siegfried Göschl wrote:
> > Hi folks,
> >
> > did I miss Maven B9 or was this release dropped ?!
> >
> > Siegfried Goeschl
> > CTO
>
> You missed it. It's been out for monthes.
>
> incze
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: b10

2003-07-14 Thread Incze Lajos
On Mon, Jul 14, 2003 at 04:21:47PM +0200, Siegfried Göschl wrote:
> Hi folks,
> 
> did I miss Maven B9 or was this release dropped ?!
> 
> Siegfried Goeschl
> CTO

You missed it. It's been out for monthes.

incze

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: b10

2003-07-14 Thread Siegfried Göschl
Hi folks,

did I miss Maven B9 or was this release dropped ?!

Siegfried Goeschl
CTO
=
IT20one GmbH
mail: [EMAIL PROTECTED]
phone: +43-1-9900046
fax: +43-1-52 37 888
www.it20one.at

On 14 Jul 2003 at 10:02, Jason van Zyl wrote:

> Hi,
> 
> If there are no objections within the next hour I will tag and
> release.
> 
> -- 
> jvz.
> 
> Jason van Zyl
> [EMAIL PROTECTED]
> http://tambora.zenplex.org
> 
> In short, man creates for himself a new religion of a rational
> and technical order to justify his work and to be justified in it.
> 
>   -- Jacques Ellul, The Technological Society
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED] For
> additional commands, e-mail: [EMAIL PROTECTED]
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: b10 test installers

2003-07-13 Thread Todd Feather
I tested out the .zip archive.

It did the build and test activitites fine. However, when I tried to
generate the site, via 'maven site', I got this failure in the
link-check plugin:

generated-xdocs\project-info.xml
[echo] Generating
C:/working/caseregistration/target/docs/task-list.html from
C:\working\caseregistration\target\gen
erated-xdocs\task-list.xml
[echo] Generating
C:/working/caseregistration/target/docs/team-list.html from
C:\working\caseregistration\target\gen
erated-xdocs\team-list.xml
maven-linkcheck-plugin:report-real:
[mkdir] Created dir: C:\working\caseregistration\target\linkcheck
[mkdir] Created dir:
C:\working\caseregistration\target\linkcheck\docs
maven-linkcheck-plugin: Not using a proxy

BUILD FAILED
File.. file:/C:/Documents and
Settings/todd/.maven/plugins/maven-linkcheck-plugin-1.1-SNAPSHOT/
Element... linkcheck:linkcheck
Line.. 73
Column 9
java.lang.reflect.InvocationTargetException

With a little more detail:
at java.lang.reflect.Method.invoke(Method.java:324)
at com.werken.forehead.Forehead.run(Forehead.java:543)
at com.werken.forehead.Forehead.main(Forehead.java:573)
Caused by: java.lang.NoSuchMethodError:
org.apache.commons.httpclient.HttpClient.setHostConfiguration(Lorg/apach
e/common
s/httpclient/HostConfiguration;)V
at
org.apache.maven.linkcheck.validation.HTTPLinkValidator.validateLink(HTT
PLinkValidator.java:135)
at
org.apache.maven.linkcheck.validation.LinkValidatorManager.validateLink(
LinkValidatorManager.java:118)
at
org.apache.maven.linkcheck.FileToCheck.check(FileToCheck.java:187)
at
org.apache.maven.linkcheck.LinkCheck.doExecute(LinkCheck.java:159)
... 63 more


Everything else rolled out of the site plugin ok.

It seems like from the comment in linkcheck.xml that these problems
might be known, but in case they aren't here's a brief error trace.

--Todd



-Original Message-
From: Jason van Zyl [mailto:[EMAIL PROTECTED] 
Sent: Sunday, July 13, 2003 10:57 AM
To: Maven Developers List
Subject: b10 test installers


Howdy,

I put a couple archives for the beta-10 here:

http://www.apache.org/~jvanzyl/

If a couple people can try these that would be appreciated, once it's
agreed they are fine I'll tag and release.

-- 
jvz.

Jason van Zyl
[EMAIL PROTECTED]
http://tambora.zenplex.org

In short, man creates for himself a new religion of a rational and
technical order to justify his work and to be justified in it.
  
  -- Jacques Ellul, The Technological Society


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: b10 test installers

2003-07-13 Thread Jason van Zyl
On Sun, 2003-07-13 at 14:35, Colin Sampaleanu wrote:
> I tried the .tgz version on a simple build. Seems to work ok, except for 
> oddity on the first attempt to download all the dependencies for the 
> plugins. Got an issue with Velociry as follows:

Thanks for checking it out, much appreciated.

> -- 
> jvz.
> 
> Jason van Zyl
> [EMAIL PROTECTED]
> http://tambora.zenplex.org
> 
> In short, man creates for himself a new religion of a rational
> and technical order to justify his work and to be justified in it.
>   
>   -- Jacques Ellul, The Technological Society


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: b10 test installers

2003-07-13 Thread Colin Sampaleanu
I tried the .tgz version on a simple build. Seems to work ok, except for 
oddity on the first attempt to download all the dependencies for the 
plugins. Got an issue with Velociry as follows:

Attempting to download velocity-1.3.jar.
.
.
java.lang.ClassNotFoundException: velocity
   at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
   at java.security.AccessController.doPrivileged(Native Method)
   at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
   at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
   at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
   at 
org.apache.commons.jelly.parser.XMLParser.createTag(XMLParser.java:10
39)
   at 
org.apache.commons.jelly.parser.XMLParser.startElement(XMLParser.java
:647)
   at 
org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Sour
ce)
   at 
org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unkn
own Source)
   at 
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unkn
own Source)
   at 
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
Dispatcher.dispatch(Unknown Source)
...

But the build appeared to work. Then I killed the repo and plugin dirs, 
and let it go at it again, and this time everything downloaded ok...

Jason van Zyl wrote:

Howdy,

I put a couple archives for the beta-10 here:

http://www.apache.org/~jvanzyl/

If a couple people can try these that would be appreciated, once it's
agreed they are fine I'll tag and release.
 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]