RE: What is the minimum JVM required for RC4?

2004-07-06 Thread Dilum Ranatunga
Sounds good. Are there any users who run maven against a 1.2 JDK? Is
that going to be a supported platform?

Thanks in advance.

-Original Message-
From: Dion Gillard [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 06, 2004 5:45 PM
To: Maven Users List
Subject: Re: What is the minimum JVM required for RC4?

I regularly test on 1.3.1 and 1.4.2

On Tue, 6 Jul 2004 10:06:59 -0500, Dilum Ranatunga
<[EMAIL PROTECTED]> wrote:
> 
> Hi,
> 
> I've not been able to find this in the installation page nor the 
> release
> notes:
>   * What is the minimum JVM level required for Maven to function?
>   * Furthermore, what specific JVMs is it tested on before being 
> released?
> 
> Thanks.
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


--
http://www.multitask.com.au/people/dion/

-
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: Using log4j to capture maven output?

2004-07-06 Thread Brett Porter
doing it programmatically would mean developing a plugin that had a
jellybean that called out to the logger methods.

An easier way is probably just to add -Dlog4j.configuration=xxx to
MAVEN_OPTS or the startup script. The log4j documentation details how
to override the config, and the default maven log4j.properties are in
CVS at src/conf/log4j.properties for reference.

Cheers,
Brett

On Tue, 6 Jul 2004 14:13:11 -0400 , [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> Hi everyone,
> 
> I've been charged with the task of migrating a project's build system from
> an ad-hoc collection of ant tasks to an automated maven-based system. The
> one thing I can't seem to figure out is how to log maven's output using
> log4j.
> 
> I know I can just redirect output in a shell script / batch file, but I'm
> trying to keep the build scripts as OS independent as I can so it would be
> ideal if I could configure logging from within maven.xml or even
> project.properties.
> 
> Is it possible to do this? According to the FAQ, maven used to log output to
> maven.log but I don't see a way to enable this.
> 
> Please help!
> 
> Thanks,
> 
> Dave
> 
> -
> 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: bootclasspath from dependency

2004-07-06 Thread Brett Porter
try ${pom.getDependencyPath('ajof:ajof')}

Probably won't work in a properties file (not sure though) - in which
case it needs to be in maven.xml


On Tue, 6 Jul 2004 13:07:43 +0200, Joachim Bader <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> for developing J2ME application it's necessary to overwrite the bootclasspath
> of the compiler.
> 
> I do this with a property in my project.properties file:
> maven.compile.compilerargs=-bootclasspath ${basedir}/lib/classes.zip:
> ${basedir}/lib/ajof.zip
> 
> disadvantage: I have to keep the bootclasspath files in my project tree.
> 
> It would be nice if I can get the bootclasspath files as dependencies from my
> maven repository.
> 
> regards,
> Joachim
> 
> -
> 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: downloading SNAPSHOT from remote repo

2004-07-06 Thread Brett Porter
apologies for the many replies - gmail went kind of funky.

On Wed, 7 Jul 2004 12:04:08 +1000, Brett Porter <[EMAIL PROTECTED]> wrote:
> 
> 
> when dIon said:
> I think this has been fixed since the RC4 release
> that means
> I think this has been fixed *after* the RC4 release
> 
> ie, it was a bug, it is now fixed. Searching JIRA/the user and dev
> mail archives will also show this.
> 
> - Brett
> 
> On Tue, 06 Jul 2004 10:27:37 +0200, Marcin Gurbisz
> <[EMAIL PROTECTED]> wrote:
> >
> >
> > This all is not clear for me.
> > Please answer my main question:
> >
> > Why snapshot jar is always downloaded from remote repo owerwriting
> > newer version in local repository in rc4?
> > Is it corect behaviour?
> >
> > Brett Porter wrote:
> >
> > >yes, this wa smy bad reading of the HTTP spec... I didn't set the
> > >If-Modified-Since header to use GMT. If you set your local timezone to
> > >GMT, it will work (but I don't recommend that :)
> > >
> > >Cheers,
> > >Brett
> > >
> > >On Mon, 5 Jul 2004 22:27:54 +1000, Dion Gillard <[EMAIL PROTECTED]> wrote:
> > >
> > >
> > >>I think this has been fixed since the RC4 release
> > >>
> > >>
> > >>
> > >>On Mon, 05 Jul 2004 13:43:56 +0200, Marcin Gurbisz
> > >><[EMAIL PROTECTED]> wrote:
> > >>
> > >>
> > >>>It doesn't occure for all SNAPSHOT libraries. For some of them I have
> > >>>"warning: last-modified not specified".
> > >>>___
> > >>>Marcin Gurbisz
> > >>>Programista
> > >>>** 
> > >>>
> > >>>
> > >>>
> > >>>Marcin Gurbisz wrote:
> > >>>
> > >>>
> > >>>
> > Why snapshot jar is always downloaded from remote repo owerwriting
> > newer version in local repository? Is it corect behaviour?
> > I haven't notice that in releases before rc4.
> > 
> > 
> > >>>
> > >>>
> > >>--
> > >>http://www.multitask.com.au/people/dion/
> > >>
> > >>-
> > >>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]
> > >
> > >
> > >
> > >
> > >
> >
>

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



Re: downloading SNAPSHOT from remote repo

2004-07-06 Thread Brett Porter
when dIon said:
I think this has been fixed since the RC4 release
that means
I think this has been fixed *after* the RC4 release

ie, it was a bug, it is now fixed. Searching JIRA/the user and dev
mail archives will also show this.

- Brett

On Tue, 06 Jul 2004 10:27:37 +0200, Marcin Gurbisz
<[EMAIL PROTECTED]> wrote:
> 
> 
> This all is not clear for me.
> Please answer my main question:
> 
> Why snapshot jar is always downloaded from remote repo owerwriting
> newer version in local repository in rc4?
> Is it corect behaviour?
> 
> Brett Porter wrote:
> 
> >yes, this wa smy bad reading of the HTTP spec... I didn't set the
> >If-Modified-Since header to use GMT. If you set your local timezone to
> >GMT, it will work (but I don't recommend that :)
> >
> >Cheers,
> >Brett
> >
> >On Mon, 5 Jul 2004 22:27:54 +1000, Dion Gillard <[EMAIL PROTECTED]> wrote:
> >
> >
> >>I think this has been fixed since the RC4 release
> >>
> >>
> >>
> >>On Mon, 05 Jul 2004 13:43:56 +0200, Marcin Gurbisz
> >><[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>>It doesn't occure for all SNAPSHOT libraries. For some of them I have
> >>>"warning: last-modified not specified".
> >>>___
> >>>Marcin Gurbisz
> >>>Programista
> >>>** 
> >>>
> >>>
> >>>
> >>>Marcin Gurbisz wrote:
> >>>
> >>>
> >>>
> Why snapshot jar is always downloaded from remote repo owerwriting
> newer version in local repository? Is it corect behaviour?
> I haven't notice that in releases before rc4.
> 
> 
> >>>
> >>>
> >>--
> >>http://www.multitask.com.au/people/dion/
> >>
> >>-
> >>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]
> >
> >
> >
> >
> >
>

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



Re: downloading SNAPSHOT from remote repo

2004-07-06 Thread Brett Porter
when dIon said:
I think this has been fixed since the RC4 release
that means
I think this has been fixed *after* the RC4 release

ie, it was a bug, it is now fixed. Searching JIRA/the user and dev
mail archives will also show this.

- Brett

On Tue, 06 Jul 2004 10:27:37 +0200, Marcin Gurbisz
<[EMAIL PROTECTED]> wrote:
> 
> 
> This all is not clear for me.
> Please answer my main question:
> 
> Why snapshot jar is always downloaded from remote repo owerwriting
> newer version in local repository in rc4?
> Is it corect behaviour?
> 
> Brett Porter wrote:
> 
> >yes, this wa smy bad reading of the HTTP spec... I didn't set the
> >If-Modified-Since header to use GMT. If you set your local timezone to
> >GMT, it will work (but I don't recommend that :)
> >
> >Cheers,
> >Brett
> >
> >On Mon, 5 Jul 2004 22:27:54 +1000, Dion Gillard <[EMAIL PROTECTED]> wrote:
> >
> >
> >>I think this has been fixed since the RC4 release
> >>
> >>
> >>
> >>On Mon, 05 Jul 2004 13:43:56 +0200, Marcin Gurbisz
> >><[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>>It doesn't occure for all SNAPSHOT libraries. For some of them I have
> >>>"warning: last-modified not specified".
> >>>___
> >>>Marcin Gurbisz
> >>>Programista
> >>>** 
> >>>
> >>>
> >>>
> >>>Marcin Gurbisz wrote:
> >>>
> >>>
> >>>
> Why snapshot jar is always downloaded from remote repo owerwriting
> newer version in local repository? Is it corect behaviour?
> I haven't notice that in releases before rc4.
> 
> 
> >>>
> >>>
> >>--
> >>http://www.multitask.com.au/people/dion/
> >>
> >>-
> >>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]
> >
> >
> >
> >
> >
>

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



Re: downloading SNAPSHOT from remote repo

2004-07-06 Thread Brett Porter
when dIon said:
I think this has been fixed since the RC4 release
that means
I think this has been fixed *after* the RC4 release

ie, it was a bug, it is now fixed. Searching JIRA/the user and dev
mail archives will also show this.

- Brett

On Tue, 06 Jul 2004 10:27:37 +0200, Marcin Gurbisz
<[EMAIL PROTECTED]> wrote:
> 
> 
> This all is not clear for me.
> Please answer my main question:
> 
> Why snapshot jar is always downloaded from remote repo owerwriting
> newer version in local repository in rc4?
> Is it corect behaviour?
> 
> Brett Porter wrote:
> 
> >yes, this wa smy bad reading of the HTTP spec... I didn't set the
> >If-Modified-Since header to use GMT. If you set your local timezone to
> >GMT, it will work (but I don't recommend that :)
> >
> >Cheers,
> >Brett
> >
> >On Mon, 5 Jul 2004 22:27:54 +1000, Dion Gillard <[EMAIL PROTECTED]> wrote:
> >
> >
> >>I think this has been fixed since the RC4 release
> >>
> >>
> >>
> >>On Mon, 05 Jul 2004 13:43:56 +0200, Marcin Gurbisz
> >><[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>>It doesn't occure for all SNAPSHOT libraries. For some of them I have
> >>>"warning: last-modified not specified".
> >>>___
> >>>Marcin Gurbisz
> >>>Programista
> >>>** 
> >>>
> >>>
> >>>
> >>>Marcin Gurbisz wrote:
> >>>
> >>>
> >>>
> Why snapshot jar is always downloaded from remote repo owerwriting
> newer version in local repository? Is it corect behaviour?
> I haven't notice that in releases before rc4.
> 
> 
> >>>
> >>>
> >>--
> >>http://www.multitask.com.au/people/dion/
> >>
> >>-
> >>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]
> >
> >
> >
> >
> >
>

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



Re: downloading SNAPSHOT from remote repo

2004-07-06 Thread Brett Porter
when dIon said:
I think this has been fixed since the RC4 release
that means
I think this has been fixed *after* the RC4 release

ie, it was a bug, it is now fixed. Searching JIRA/the user and dev
mail archives will also show this.

- Brett

On Tue, 06 Jul 2004 10:27:37 +0200, Marcin Gurbisz
<[EMAIL PROTECTED]> wrote:
> 
> 
> This all is not clear for me.
> Please answer my main question:
> 
> Why snapshot jar is always downloaded from remote repo owerwriting
> newer version in local repository in rc4?
> Is it corect behaviour?
> 
> Brett Porter wrote:
> 
> >yes, this wa smy bad reading of the HTTP spec... I didn't set the
> >If-Modified-Since header to use GMT. If you set your local timezone to
> >GMT, it will work (but I don't recommend that :)
> >
> >Cheers,
> >Brett
> >
> >On Mon, 5 Jul 2004 22:27:54 +1000, Dion Gillard <[EMAIL PROTECTED]> wrote:
> >
> >
> >>I think this has been fixed since the RC4 release
> >>
> >>
> >>
> >>On Mon, 05 Jul 2004 13:43:56 +0200, Marcin Gurbisz
> >><[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>>It doesn't occure for all SNAPSHOT libraries. For some of them I have
> >>>"warning: last-modified not specified".
> >>>___
> >>>Marcin Gurbisz
> >>>Programista
> >>>** 
> >>>
> >>>
> >>>
> >>>Marcin Gurbisz wrote:
> >>>
> >>>
> >>>
> Why snapshot jar is always downloaded from remote repo owerwriting
> newer version in local repository? Is it corect behaviour?
> I haven't notice that in releases before rc4.
> 
> 
> >>>
> >>>
> >>--
> >>http://www.multitask.com.au/people/dion/
> >>
> >>-
> >>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]
> >
> >
> >
> >
> >
>

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



Re: Maven & CruiseControl

2004-07-06 Thread Paul Spencer
See http://jira.codehaus.org/browse/MPCRUISECONTROL-6
Paul Spencer
STRAYER, JON (SBCSI) wrote:
I've been doing this for a while.  The only time I remember seeing this
message is when the compile failed.  


I've just started experimenting with using CruiseControl to 
manage running our Maven based build.  This all works a treat 
but with one minor niggle - on the summary emails that are 
sent out it does list the test:test goal in what's been 
executed, but then later down it says "this project has no 
unit tests".

So I'm a bit unsure if this is due to:
1. My Maven project being misconfigured
2. CruiseControl not understanding Maven-run unit tests
3. My CruiseControl project being misconfigured
Admittedly the latter would be more for the CC user list, not 
Maven, but I don't have the address for that...

Does anybody have any experience of doing this and have any 
wisdom they can share?

thanks
James
--
--
For more information about Barclays Capital, please
visit our web site at http://www.barcap.com.
Internet communications are not secure and therefore the Barclays 
Group does not accept legal responsibility for the contents of this 
message.  Although the Barclays Group operates anti-virus programmes, 
it does not accept responsibility for any damage whatsoever that is 
caused by viruses being passed.  Any views or opinions presented are 
solely those of the author and do not necessarily represent 
those of the 
Barclays Group.  Replies to this email may be monitored by 
the Barclays 
Group for operational or business reasons.

--
--
-
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]


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


Re: What is the minimum JVM required for RC4?

2004-07-06 Thread Dion Gillard
I regularly test on 1.3.1 and 1.4.2

On Tue, 6 Jul 2004 10:06:59 -0500, Dilum Ranatunga
<[EMAIL PROTECTED]> wrote:
> 
> Hi,
> 
> I've not been able to find this in the installation page nor the release
> notes:
>   * What is the minimum JVM level required for Maven to function?
>   * Furthermore, what specific JVMs is it tested on before being
> released?
> 
> Thanks.
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-- 
http://www.multitask.com.au/people/dion/

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



Re: Maven and JDK 5.0

2004-07-06 Thread jerome lacoste
On Mon, 5 Jul 2004 09:34:41 +1000, Brett Porter <[EMAIL PROTECTED]> wrote:
> No.
> 
> I'm happy to work to resolve JDK 5.0 issues when it is officially
> released (and after Maven 1.0), but if you are getting the early
> accesses, be prepared to fix bugs yourself as it is going to be
> unknown whether the bug is in Maven or the JDK.

I don't see why the release of JDK 5.0 (what a stupid name) would
change that problem.
It will still be hard to know where the bug comes from.

Previous 1.x.0 release where also containing many bugs. This one
should not be an exception.

J

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



Using log4j to capture maven output?

2004-07-06 Thread david . loose
Hi everyone,

I've been charged with the task of migrating a project's build system from
an ad-hoc collection of ant tasks to an automated maven-based system. The
one thing I can't seem to figure out is how to log maven's output using
log4j. 

I know I can just redirect output in a shell script / batch file, but I'm
trying to keep the build scripts as OS independent as I can so it would be
ideal if I could configure logging from within maven.xml or even
project.properties.

Is it possible to do this? According to the FAQ, maven used to log output to
maven.log but I don't see a way to enable this.

Please help!

Thanks,

Dave

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



Re: Maven & CruiseControl

2004-07-06 Thread Paul Spencer
See http://jira.codehaus.org/browse/MPCRUISECONTROL-6
Paul Spencer
STRAYER, JON (SBCSI) wrote:
I've been doing this for a while.  The only time I remember seeing this
message is when the compile failed.  


I've just started experimenting with using CruiseControl to 
manage running our Maven based build.  This all works a treat 
but with one minor niggle - on the summary emails that are 
sent out it does list the test:test goal in what's been 
executed, but then later down it says "this project has no 
unit tests".

So I'm a bit unsure if this is due to:
1. My Maven project being misconfigured
2. CruiseControl not understanding Maven-run unit tests
3. My CruiseControl project being misconfigured
Admittedly the latter would be more for the CC user list, not 
Maven, but I don't have the address for that...

Does anybody have any experience of doing this and have any 
wisdom they can share?

thanks
James
--
--
For more information about Barclays Capital, please
visit our web site at http://www.barcap.com.
Internet communications are not secure and therefore the Barclays 
Group does not accept legal responsibility for the contents of this 
message.  Although the Barclays Group operates anti-virus programmes, 
it does not accept responsibility for any damage whatsoever that is 
caused by viruses being passed.  Any views or opinions presented are 
solely those of the author and do not necessarily represent 
those of the 
Barclays Group.  Replies to this email may be monitored by 
the Barclays 
Group for operational or business reasons.

--
--
-
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]



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


RE: Maven & CruiseControl

2004-07-06 Thread James . Shute
That's the one - thanks

-Original Message-
From: Matt Read [mailto:[EMAIL PROTECTED] 
Sent: 06 July 2004 17:07
To: 'Maven Users List'
Subject: RE: Maven & CruiseControl


You also have to explicitly merge the .xml test results into the
cruisecontrol log, e.g.



 


> -Original Message-
> From: STRAYER, JON (SBCSI) [mailto:[EMAIL PROTECTED]
> Sent: 06 July 2004 16:26
> To: 'Maven Users List'
> Subject: RE: Maven & CruiseControl
> 
> I've been doing this for a while.  The only time I remember
> seeing this message is when the compile failed.  
> 
> > I've just started experimenting with using CruiseControl to manage
> > running our Maven based build.  This all works a treat but with one 
> > minor niggle - on the summary emails that are sent out it does list 
> > the test:test goal in what's been executed, but then later down it 
> > says "this project has no unit tests".
> > 
> > So I'm a bit unsure if this is due to:
> > 1. My Maven project being misconfigured 2. CruiseControl not
> > understanding Maven-run unit tests 3. My CruiseControl 
> project being
> > misconfigured
> > 
> > Admittedly the latter would be more for the CC user list,
> not Maven,
> > but I don't have the address for that...
> > 
> > Does anybody have any experience of doing this and have any wisdom
> > they can share?
> > 
> > thanks
> > 
> > James
> > 
> > 
> > --
> > --
> > For more information about Barclays Capital, please visit
> our web site
> > at http://www.barcap.com.
> > 
> > 
> > Internet communications are not secure and therefore the Barclays
> > Group does not accept legal responsibility for the contents of this 
> > message.  Although the Barclays Group operates anti-virus 
> programmes,
> > it does not accept responsibility for any damage whatsoever that is
> > caused by viruses being passed.  Any views or opinions 
> presented are
> > solely those of the author and do not necessarily represent
> those of
> > the Barclays Group.  Replies to this email may be monitored by the
> > Barclays Group for operational or business reasons.
> > 
> > --
> > --
> > 
> > 
> > 
> -
> > 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]
> 
> 


-
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: Maven & CruiseControl

2004-07-06 Thread Matt Read
You also have to explicitly merge the .xml test results into the
cruisecontrol log, e.g.



 


> -Original Message-
> From: STRAYER, JON (SBCSI) [mailto:[EMAIL PROTECTED] 
> Sent: 06 July 2004 16:26
> To: 'Maven Users List'
> Subject: RE: Maven & CruiseControl
> 
> I've been doing this for a while.  The only time I remember 
> seeing this message is when the compile failed.  
> 
> > I've just started experimenting with using CruiseControl to manage 
> > running our Maven based build.  This all works a treat but with one 
> > minor niggle - on the summary emails that are sent out it does list 
> > the test:test goal in what's been executed, but then later down it 
> > says "this project has no unit tests".
> > 
> > So I'm a bit unsure if this is due to:
> > 1. My Maven project being misconfigured 2. CruiseControl not 
> > understanding Maven-run unit tests 3. My CruiseControl 
> project being 
> > misconfigured
> > 
> > Admittedly the latter would be more for the CC user list, 
> not Maven, 
> > but I don't have the address for that...
> > 
> > Does anybody have any experience of doing this and have any wisdom 
> > they can share?
> > 
> > thanks
> > 
> > James
> > 
> > 
> > --
> > --
> > For more information about Barclays Capital, please visit 
> our web site 
> > at http://www.barcap.com.
> > 
> > 
> > Internet communications are not secure and therefore the Barclays 
> > Group does not accept legal responsibility for the contents of this 
> > message.  Although the Barclays Group operates anti-virus 
> programmes, 
> > it does not accept responsibility for any damage whatsoever that is 
> > caused by viruses being passed.  Any views or opinions 
> presented are 
> > solely those of the author and do not necessarily represent 
> those of 
> > the Barclays Group.  Replies to this email may be monitored by the 
> > Barclays Group for operational or business reasons.
> > 
> > --
> > --
> > 
> > 
> > 
> -
> > 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]
> 
> 


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



Re: downloading SNAPSHOT from remote repo

2004-07-06 Thread Jefferson K. French
Marcin,

Brett is saying that the code doing the download has a bug where it
doesn't take the correct timezone into account when determining if the
remote JAR is newer or not. So no, it's not correct behavior.

Dion said he thinks it's fixed in CVS, so you could try grabbing the
latest source and building it.

  Jeff

On Tue, 06 Jul 2004, at 10:27:37 [GMT +0200] Marcin Gurbisz wrote:

> This all is not clear for me.
> Please answer my main question:

> Why snapshot jar is always downloaded from remote repo owerwriting
> newer version in local repository in rc4?
> Is it corect behaviour?



> Brett Porter wrote:

>>yes, this wa smy bad reading of the HTTP spec... I didn't set the
>>If-Modified-Since header to use GMT. If you set your local timezone to
>>GMT, it will work (but I don't recommend that :)
>>
>>Cheers,
>>Brett
>>
>>On Mon, 5 Jul 2004 22:27:54 +1000, Dion Gillard <[EMAIL PROTECTED]> wrote:
>>  
>>
>>>I think this has been fixed since the RC4 release
>>>
>>>
>>>
>>>On Mon, 05 Jul 2004 13:43:56 +0200, Marcin Gurbisz
>>><[EMAIL PROTECTED]> wrote:
>>>
>>>
It doesn't occure for all SNAPSHOT libraries. For some of them I have
"warning: last-modified not specified".
___
Marcin Gurbisz
Programista
** 



Marcin Gurbisz wrote:

  

>Why snapshot jar is always downloaded from remote repo owerwriting
>newer version in local repository? Is it corect behaviour?
>I haven't notice that in releases before rc4.
>
>
  

>>>--
>>>http://www.multitask.com.au/people/dion/
>>>
>>>-
>>>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]
>>
>>
>>
>>  
>>

-- 
mailto:[EMAIL PROTECTED]



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



Re: Maven & CruiseControl

2004-07-06 Thread Jefferson K. French
James,

Maven has to enter the test:test goal to determine that you have no
tests. In that goal it checks for any test source files, and checks to
see if property maven.test.skip is set. If there is no reason to run a
test, it outputs a message and exits.

  Jeff

On Tue, 06 Jul 2004, at 12:07:13 [GMT +0100]
[EMAIL PROTECTED] wrote:

> I've just started experimenting with using CruiseControl to manage running
> our Maven based build.  This all works a treat but with one minor niggle -
> on the summary emails that are sent out it does list the test:test goal in
> what's been executed, but then later down it says "this project has no unit
> tests".

> So I'm a bit unsure if this is due to:
> 1. My Maven project being misconfigured
> 2. CruiseControl not understanding Maven-run unit tests
> 3. My CruiseControl project being misconfigured

> Admittedly the latter would be more for the CC user list, not Maven, but I
> don't have the address for that...

> Does anybody have any experience of doing this and have any wisdom they can
> share?

> thanks

> James


> 
> For more information about Barclays Capital, please
> visit our web site at http://www.barcap.com.


> Internet communications are not secure and therefore the Barclays 
> Group does not accept legal responsibility for the contents of this 
> message.  Although the Barclays Group operates anti-virus programmes, 
> it does not accept responsibility for any damage whatsoever that is 
> caused by viruses being passed.  Any views or opinions presented are 
> solely those of the author and do not necessarily represent those of the 
> Barclays Group.  Replies to this email may be monitored by the Barclays 
> Group for operational or business reasons.

> 


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

-- 
mailto:[EMAIL PROTECTED]



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



Just to convert one xdoc xml file into html?

2004-07-06 Thread Chen, Andrew .
Hi, 
We are keeping our project documents in xdocs xml format, and use Maven to
build html site.  Xdocs are nice, in terms of it is a "semi-standard" way to
having documents in text format.  But it is not WYSIWYG, or it a little hard
to be WYSIWYG.

The default "maven site" or "maven xdoc" are very time consuming, because
each time, all the xml files are re-generated.I looked at the properties
of xdocs, but seems like they all talk about UI and styles, not processing.

Is there a flag or command just to convert with one xml document into html?

Thanks.
--
Andrew H. Chen
Westinghouse Electric Company, Nuclear Fuel
4350 Northern Pike, Monroeville, PA, 15146
Tel. +1 (412) 374-2316 




RE: Maven & CruiseControl

2004-07-06 Thread STRAYER, JON (SBCSI)
I've been doing this for a while.  The only time I remember seeing this
message is when the compile failed.  

> I've just started experimenting with using CruiseControl to 
> manage running our Maven based build.  This all works a treat 
> but with one minor niggle - on the summary emails that are 
> sent out it does list the test:test goal in what's been 
> executed, but then later down it says "this project has no 
> unit tests".
> 
> So I'm a bit unsure if this is due to:
> 1. My Maven project being misconfigured
> 2. CruiseControl not understanding Maven-run unit tests
> 3. My CruiseControl project being misconfigured
> 
> Admittedly the latter would be more for the CC user list, not 
> Maven, but I don't have the address for that...
> 
> Does anybody have any experience of doing this and have any 
> wisdom they can share?
> 
> thanks
> 
> James
> 
> 
> --
> --
> For more information about Barclays Capital, please
> visit our web site at http://www.barcap.com.
> 
> 
> Internet communications are not secure and therefore the Barclays 
> Group does not accept legal responsibility for the contents of this 
> message.  Although the Barclays Group operates anti-virus programmes, 
> it does not accept responsibility for any damage whatsoever that is 
> caused by viruses being passed.  Any views or opinions presented are 
> solely those of the author and do not necessarily represent 
> those of the 
> Barclays Group.  Replies to this email may be monitored by 
> the Barclays 
> Group for operational or business reasons.
> 
> --
> --
> 
> 
> -
> 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]



xdocs build command just to convert one xml file into html?

2004-07-06 Thread Chen, Andrew .
Hi, 
We are keeping our project documents in xdocs xml format, and use Maven to
build html site.  Xdocs are nice, in terms of it is a "semi-standard" way to
having documents in text format.  But it is not WYSIWYG, or it a little hard
to be WYSIWYG.

The default "maven site" or "maven xdoc" are very time consuming, because
each time, all the xml files are re-generated.I looked at the properties
of xdocs, but seems like they all talk about UI and styles, not processing.

Is there a flag or command just to convert with one xml document into html?

Thanks.
--
Andrew H. Chen
Westinghouse Electric Company, Nuclear Fuel
4350 Northern Pike, Monroeville, PA, 15146
Tel. +1 (412) 374-2316 



What is the minimum JVM required for RC4?

2004-07-06 Thread Dilum Ranatunga

Hi,

I've not been able to find this in the installation page nor the release
notes:
  * What is the minimum JVM level required for Maven to function?
  * Furthermore, what specific JVMs is it tested on before being
released?

Thanks.

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



Maven & CruiseControl

2004-07-06 Thread James . Shute
I've just started experimenting with using CruiseControl to manage running
our Maven based build.  This all works a treat but with one minor niggle -
on the summary emails that are sent out it does list the test:test goal in
what's been executed, but then later down it says "this project has no unit
tests".

So I'm a bit unsure if this is due to:
1. My Maven project being misconfigured
2. CruiseControl not understanding Maven-run unit tests
3. My CruiseControl project being misconfigured

Admittedly the latter would be more for the CC user list, not Maven, but I
don't have the address for that...

Does anybody have any experience of doing this and have any wisdom they can
share?

thanks

James



For more information about Barclays Capital, please
visit our web site at http://www.barcap.com.


Internet communications are not secure and therefore the Barclays 
Group does not accept legal responsibility for the contents of this 
message.  Although the Barclays Group operates anti-virus programmes, 
it does not accept responsibility for any damage whatsoever that is 
caused by viruses being passed.  Any views or opinions presented are 
solely those of the author and do not necessarily represent those of the 
Barclays Group.  Replies to this email may be monitored by the Barclays 
Group for operational or business reasons.




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



bootclasspath from dependency

2004-07-06 Thread Joachim Bader
Hi,

for developing J2ME application it's necessary to overwrite the bootclasspath 
of the compiler.

I do this with a property in my project.properties file:
maven.compile.compilerargs=-bootclasspath ${basedir}/lib/classes.zip:
${basedir}/lib/ajof.zip

disadvantage: I have to keep the bootclasspath files in my project tree.

It would be nice if I can get the bootclasspath files as dependencies from my 
maven repository.

regards,
Joachim


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



Quick Dependency Questions

2004-07-06 Thread Jesper Linvald

Return Receipt
   
 
Your  Quick Dependency Questions   
 
document:  
 
   
 
was received  Jesper Linvald/Transport/MDG 
 
by:
 
   
 
at:   06-07-2004 12:13:21  
 
   
 





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



Re: downloading SNAPSHOT from remote repo

2004-07-06 Thread Marcin Gurbisz
This all is not clear for me.
Please answer my main question:
Why snapshot jar is always downloaded from remote repo owerwriting
newer version in local repository in rc4?
Is it corect behaviour?

Brett Porter wrote:
yes, this wa smy bad reading of the HTTP spec... I didn't set the
If-Modified-Since header to use GMT. If you set your local timezone to
GMT, it will work (but I don't recommend that :)
Cheers,
Brett
On Mon, 5 Jul 2004 22:27:54 +1000, Dion Gillard <[EMAIL PROTECTED]> wrote:
 

I think this has been fixed since the RC4 release

On Mon, 05 Jul 2004 13:43:56 +0200, Marcin Gurbisz
<[EMAIL PROTECTED]> wrote:
   

It doesn't occure for all SNAPSHOT libraries. For some of them I have
"warning: last-modified not specified".
___
Marcin Gurbisz
Programista
** 

Marcin Gurbisz wrote:
 

Why snapshot jar is always downloaded from remote repo owerwriting
newer version in local repository? Is it corect behaviour?
I haven't notice that in releases before rc4.
   

 

--
http://www.multitask.com.au/people/dion/
-
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]