RE: FW: Passing CruiseControl input into Maven

2008-11-18 Thread Durbha, Praveen (GE Healthcare)

Is the label value being passed coming from a text field ? Could you
give me an example?

Thanks

-Original Message-
From: Martin B [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 18, 2008 5:08 PM
To: users@maven.apache.org
Subject: Re: FW: Passing CruiseControl input into Maven


The only way i can think of is to pass the value of the label as a
property to maven.
i.e  mvn -Dproperty.name=property.value  

We do this in cruisecontrol but only staticly to pass site wide
properties into our common parent-pom.


Your mojo or pom will then be able to use that value.


pdurbha wrote:
> 
> I guess I need to be a little more clear..
> 
> I have created a textfield on Cruisecontrol portal to allow the user 
> enter the label..Is there a way I can pass this user-defined label 
> into Maven?
> 
> Thanks
> 
> -Original Message-
> From: Durbha, Praveen (GE Healthcare)
> Sent: Tuesday, November 18, 2008 4:03 PM
> To: Maven Users List
> Subject: Passing CruiseControl input into Maven
> 
> Hi,
>  
> I have a peculiar problem...
>  
> I am using both Cruisecontrol and Maven for my build purposes..My 
> question is : Is there a way I can pass the user input on 
> Cruisecontrol into Maven?
>  
> Thanks!
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

--
View this message in context:
http://www.nabble.com/FW%3A-Passing-CruiseControl-input-into-Maven-tp205
69430p20569922.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
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: FW: Passing CruiseControl input into Maven

2008-11-18 Thread Wayne Fay
>  -Dmybuildnumber=<%  %>"

I don't know CC, but that looks wrong to me. Hopefully their
documentation or user/dev list will be able to provide you with the
proper configuration.

Wayne

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



RE: FW: Passing CruiseControl input into Maven

2008-11-18 Thread Durbha, Praveen (GE Healthcare)
I am trying to do this..but it doesn't work

 -Dmybuildnumber=<%  %>"

I am not sure if I can embed HTML/JSP elements in XML

Thanks



-Original Message-
From: Wayne Fay [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 18, 2008 5:19 PM
To: Maven Users List
Subject: Re: FW: Passing CruiseControl input into Maven

>goal="install" flags="-U -cpu 
> -Dcruisecontrol.buildType=${project.name}
>-Dmaven.test.failure.ignore=true"
> activateprofiles="dashboard"/>

I don't know Cruise Control, but you are already passing a couple values
via -D, look in the "flags" parameter.

So you would simply add another -D eg -Dmybuildnumber=??? (CC text field
goes there).

Wayne

-
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: FW: Passing CruiseControl input into Maven

2008-11-18 Thread Wayne Fay
>goal="install" flags="-U -cpu
> -Dcruisecontrol.buildType=${project.name}
>-Dmaven.test.failure.ignore=true"
> activateprofiles="dashboard"/>

I don't know Cruise Control, but you are already passing a couple
values via -D, look in the "flags" parameter.

So you would simply add another -D eg -Dmybuildnumber=??? (CC text
field goes there).

Wayne

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



Re: FW: Passing CruiseControl input into Maven

2008-11-18 Thread Martin B

The only way i can think of is to pass the value of the label as a property
to maven.
i.e  mvn -Dproperty.name=property.value  

We do this in cruisecontrol but only staticly to pass site wide properties
into our common parent-pom.


Your mojo or pom will then be able to use that value.


pdurbha wrote:
> 
> I guess I need to be a little more clear..
> 
> I have created a textfield on Cruisecontrol portal to allow the user
> enter the label..Is there a way I can pass this user-defined label into
> Maven?
> 
> Thanks 
> 
> -Original Message-
> From: Durbha, Praveen (GE Healthcare) 
> Sent: Tuesday, November 18, 2008 4:03 PM
> To: Maven Users List
> Subject: Passing CruiseControl input into Maven
> 
> Hi,
>  
> I have a peculiar problem...
>  
> I am using both Cruisecontrol and Maven for my build purposes..My
> question is : Is there a way I can pass the user input on Cruisecontrol
> into Maven?
>  
> Thanks!
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/FW%3A-Passing-CruiseControl-input-into-Maven-tp20569430p20569922.html
Sent from the Maven - Users mailing list archive at Nabble.com.


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



RE: FW: Passing CruiseControl input into Maven

2008-11-18 Thread Durbha, Praveen (GE Healthcare)
I am using the label for tagging the releases. Cruise creates a build
number, but I have customized it by replacing it with a text field.

Right now, my maven script looks like this: 

   

How do I pass the text field input into this script..is it even
possible? I have posted the message in Cruisecontrol as well

Thanks!

-Original Message-
From: Wayne Fay [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 18, 2008 4:40 PM
To: Maven Users List
Subject: Re: FW: Passing CruiseControl input into Maven

> I have created a textfield on Cruisecontrol portal to allow the user 
> enter the label..Is there a way I can pass this user-defined label 
> into Maven?

What would you use the label for? I'd assume you could set CC up to pass
it via -D. But isn't this a CruiseControl User list question, not Maven
User list??

Wayne

-
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: FW: Passing CruiseControl input into Maven

2008-11-18 Thread Wayne Fay
> I have created a textfield on Cruisecontrol portal to allow the user
> enter the label..Is there a way I can pass this user-defined label into
> Maven?

What would you use the label for? I'd assume you could set CC up to
pass it via -D. But isn't this a CruiseControl User list question, not
Maven User list??

Wayne

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



FW: Passing CruiseControl input into Maven

2008-11-18 Thread Durbha, Praveen (GE Healthcare)
I guess I need to be a little more clear..

I have created a textfield on Cruisecontrol portal to allow the user
enter the label..Is there a way I can pass this user-defined label into
Maven?

Thanks 

-Original Message-
From: Durbha, Praveen (GE Healthcare) 
Sent: Tuesday, November 18, 2008 4:03 PM
To: Maven Users List
Subject: Passing CruiseControl input into Maven

Hi,
 
I have a peculiar problem...
 
I am using both Cruisecontrol and Maven for my build purposes..My
question is : Is there a way I can pass the user input on Cruisecontrol
into Maven?
 
Thanks!

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



Passing CruiseControl input into Maven

2008-11-18 Thread Durbha, Praveen (GE Healthcare)
Hi,
 
I have a peculiar problem...
 
I am using both Cruisecontrol and Maven for my build purposes..My
question is : Is there a way I can pass the user input on Cruisecontrol
into Maven?
 
Thanks!


Re: Error running Javadoc plugin under CruiseControl

2007-10-25 Thread Wayne Fay
For the benefit of other people who might search the archives for this
same bug, can you tell us what JDK version you were running before
that was giving you the problem? Then we can tell people to avoid that
JDK, perhaps in the m-javadoc-p documentation or something.

Wayne

On 10/25/07, Simon Kingaby <[EMAIL PROTECTED]> wrote:
> I upgraded to Java SDK 6 update 3 yesterday and my issues with JavaDoc
> were solved.  There seems to have been a bug in the JavaDoc utility that
> caused it to fail when running from CruiseControl.
> Thanks for your suggestions.
>
>
> -Original Message-
> From: Wayne Fay [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 19, 2007 11:23 AM
> To: Maven Users List
> Subject: Re: Error running Javadoc plugin under CruiseControl
>
> The forward slash may be the problem (a bug). I have no idea. Try
> executing "mkdir m:/" and see if it works or fails. If it is a
> bug, dig into the m-javadoc-p and fix it, and see if that solves your
> problem. If so, please file a bug report and attach your fix.
>
> Wayne
>
> On 10/19/07, Simon Kingaby <[EMAIL PROTECTED]> wrote:
> > All of the other TARGET folders are created correctly.  The error is
> > strictly relating to the JavaDocs plugin.  The checkstyle, PMD,
> > surefire, docck, etc., all work fine.
> > Thanks.
> > Is it important that the folder it is trying to create:
> >
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> > ngaby/coolcoders/dogHouse/
> > Has only one \ in the entire path, between apidocs and com?
> >
> >
> > -Original Message-
> > From: Wayne Fay [mailto:[EMAIL PROTECTED]
> > Sent: Friday, October 19, 2007 10:29 AM
> > To: Maven Users List
> > Subject: Re: Error running Javadoc plugin under CruiseControl
> >
> > I doubt your CruiseControl user is the same as your regular login user
> > that you've run your test with. Does the CC user have the proper
> > privileges to create files/directories on the M: drive etc?
> >
> > "Unable to create directory" -- seems like a filesystem problem.
> >
> > Wayne
> >
> > On 10/18/07, Simon Kingaby <[EMAIL PROTECTED]> wrote:
> > > I need some help debugging my Maven 2 script when it runs under
> > > CruiseControl, please.
> > >
> > >
> > >
> > > The javadoc plugin is included in pom.xml with no special
> parameters:
> > >
> > >  
> > >
> > >maven-javadoc-plugin
> > >
> > >  
> > >
> > >
> > >
> > > WORKS FROM COMMAND LINE
> > >
> > > When I run trunk>mvn clean scm:update install site from a Windows
> > > (server 2003 R2) command prompt:
> > >
> > > Maven echoes:
> > >
> > > [INFO] [javadoc:javadoc]
> > >
> > > Loading source files for package com.skingaby.coolcoders.dogHouse...
> > >
> > > Constructing Javadoc information...
> > >
> > > Standard Doclet version 1.6.0_02
> > >
> > > Building tree for all the packages and classes...
> > >
> > > Generating
> > >
> >
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> > > ngaby/coolcoders/dogHouse/\Cat.html...
> > >
> > > Generating
> > >
> >
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> > > ngaby/coolcoders/dogHouse/\Dog.html...
> > >
> > > ...
> > >
> > > Generating
> > >
> >
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\stylesh
> > > eet.css...
> > >
> > > [INFO]
> > >
> >
> 
> > >
> > > [INFO] BUILD SUCCESSFUL
> > >
> > >
> > >
> > >
> > >
> > > FAILS IN CRUISECONTROL
> > >
> > > I have added the maven plugin to my CruiseControl config.xml:
> > >
> > >   > > pomfile="${projectdir}/pom.xml" goal="clean scm:update|install
> > > site">
> > >
> > > And execute it here:
> > >
> > >
> > >
> > >   
> > >
> > >
> > >
> > > The clean, scm:udpdate and install all work fine.  The site however,
> > > fails and the cruisecontrol log shows this:
> > >
> > > [INFO] Generate "JavaDocs" report.
> > > Loading source files for package com.skingaby.c

RE: Error running Javadoc plugin under CruiseControl

2007-10-25 Thread Simon Kingaby
I upgraded to Java SDK 6 update 3 yesterday and my issues with JavaDoc
were solved.  There seems to have been a bug in the JavaDoc utility that
caused it to fail when running from CruiseControl.
Thanks for your suggestions.


-Original Message-
From: Wayne Fay [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 19, 2007 11:23 AM
To: Maven Users List
Subject: Re: Error running Javadoc plugin under CruiseControl

The forward slash may be the problem (a bug). I have no idea. Try
executing "mkdir m:/" and see if it works or fails. If it is a
bug, dig into the m-javadoc-p and fix it, and see if that solves your
problem. If so, please file a bug report and attach your fix.

Wayne

On 10/19/07, Simon Kingaby <[EMAIL PROTECTED]> wrote:
> All of the other TARGET folders are created correctly.  The error is
> strictly relating to the JavaDocs plugin.  The checkstyle, PMD,
> surefire, docck, etc., all work fine.
> Thanks.
> Is it important that the folder it is trying to create:
>
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> ngaby/coolcoders/dogHouse/
> Has only one \ in the entire path, between apidocs and com?
>
>
> -Original Message-
> From: Wayne Fay [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 19, 2007 10:29 AM
> To: Maven Users List
> Subject: Re: Error running Javadoc plugin under CruiseControl
>
> I doubt your CruiseControl user is the same as your regular login user
> that you've run your test with. Does the CC user have the proper
> privileges to create files/directories on the M: drive etc?
>
> "Unable to create directory" -- seems like a filesystem problem.
>
> Wayne
>
> On 10/18/07, Simon Kingaby <[EMAIL PROTECTED]> wrote:
> > I need some help debugging my Maven 2 script when it runs under
> > CruiseControl, please.
> >
> >
> >
> > The javadoc plugin is included in pom.xml with no special
parameters:
> >
> >  
> >
> >maven-javadoc-plugin
> >
> >  
> >
> >
> >
> > WORKS FROM COMMAND LINE
> >
> > When I run trunk>mvn clean scm:update install site from a Windows
> > (server 2003 R2) command prompt:
> >
> > Maven echoes:
> >
> > [INFO] [javadoc:javadoc]
> >
> > Loading source files for package com.skingaby.coolcoders.dogHouse...
> >
> > Constructing Javadoc information...
> >
> > Standard Doclet version 1.6.0_02
> >
> > Building tree for all the packages and classes...
> >
> > Generating
> >
>
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> > ngaby/coolcoders/dogHouse/\Cat.html...
> >
> > Generating
> >
>
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> > ngaby/coolcoders/dogHouse/\Dog.html...
> >
> > ...
> >
> > Generating
> >
>
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\stylesh
> > eet.css...
> >
> > [INFO]
> >
>
----
> >
> > [INFO] BUILD SUCCESSFUL
> >
> >
> >
> >
> >
> > FAILS IN CRUISECONTROL
> >
> > I have added the maven plugin to my CruiseControl config.xml:
> >
> >   > pomfile="${projectdir}/pom.xml" goal="clean scm:update|install
> > site">
> >
> > And execute it here:
> >
> >
> >
> >   
> >
> >
> >
> > The clean, scm:udpdate and install all work fine.  The site however,
> > fails and the cruisecontrol log shows this:
> >
> > [INFO] Generate "JavaDocs" report.
> > Loading source files for package com.skingaby.coolcoders.dogHouse...
> > Constructing Javadoc information...
> > Standard Doclet version 1.6.0_02
> > Building tree for all the packages and classes...
> > 1 error
> > [INFO]
> >
>

> > [ERROR] BUILD ERROR
> > [INFO]
> >
>

> > [INFO] Error during page generation
> > Embedded error: Error rendering Maven report: Exit code: 1 -
javadoc:
> > error - Unable to create directory
> >
>
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> > ngaby/coolcoders/dogHouse/
> > com.sun.tools.doclets.internal.toolkit.util.DocletAbortException
> > at
> >
>
com.sun.tools.doclets.internal.toolkit.util.DirectoryManager.createDirec
> > tory(DirectoryManager.java:263)
> > at
> >
>
com.sun.

Re: Error running Javadoc plugin under CruiseControl

2007-10-19 Thread Wayne Fay
The forward slash may be the problem (a bug). I have no idea. Try
executing "mkdir m:/" and see if it works or fails. If it is a
bug, dig into the m-javadoc-p and fix it, and see if that solves your
problem. If so, please file a bug report and attach your fix.

Wayne

On 10/19/07, Simon Kingaby <[EMAIL PROTECTED]> wrote:
> All of the other TARGET folders are created correctly.  The error is
> strictly relating to the JavaDocs plugin.  The checkstyle, PMD,
> surefire, docck, etc., all work fine.
> Thanks.
> Is it important that the folder it is trying to create:
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> ngaby/coolcoders/dogHouse/
> Has only one \ in the entire path, between apidocs and com?
>
>
> -Original Message-
> From: Wayne Fay [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 19, 2007 10:29 AM
> To: Maven Users List
> Subject: Re: Error running Javadoc plugin under CruiseControl
>
> I doubt your CruiseControl user is the same as your regular login user
> that you've run your test with. Does the CC user have the proper
> privileges to create files/directories on the M: drive etc?
>
> "Unable to create directory" -- seems like a filesystem problem.
>
> Wayne
>
> On 10/18/07, Simon Kingaby <[EMAIL PROTECTED]> wrote:
> > I need some help debugging my Maven 2 script when it runs under
> > CruiseControl, please.
> >
> >
> >
> > The javadoc plugin is included in pom.xml with no special parameters:
> >
> >  
> >
> >maven-javadoc-plugin
> >
> >  
> >
> >
> >
> > WORKS FROM COMMAND LINE
> >
> > When I run trunk>mvn clean scm:update install site from a Windows
> > (server 2003 R2) command prompt:
> >
> > Maven echoes:
> >
> > [INFO] [javadoc:javadoc]
> >
> > Loading source files for package com.skingaby.coolcoders.dogHouse...
> >
> > Constructing Javadoc information...
> >
> > Standard Doclet version 1.6.0_02
> >
> > Building tree for all the packages and classes...
> >
> > Generating
> >
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> > ngaby/coolcoders/dogHouse/\Cat.html...
> >
> > Generating
> >
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> > ngaby/coolcoders/dogHouse/\Dog.html...
> >
> > ...
> >
> > Generating
> >
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\stylesh
> > eet.css...
> >
> > [INFO]
> >
> ----
> >
> > [INFO] BUILD SUCCESSFUL
> >
> >
> >
> >
> >
> > FAILS IN CRUISECONTROL
> >
> > I have added the maven plugin to my CruiseControl config.xml:
> >
> >   > pomfile="${projectdir}/pom.xml" goal="clean scm:update|install
> > site">
> >
> > And execute it here:
> >
> >
> >
> >   
> >
> >
> >
> > The clean, scm:udpdate and install all work fine.  The site however,
> > fails and the cruisecontrol log shows this:
> >
> > [INFO] Generate "JavaDocs" report.
> > Loading source files for package com.skingaby.coolcoders.dogHouse...
> > Constructing Javadoc information...
> > Standard Doclet version 1.6.0_02
> > Building tree for all the packages and classes...
> > 1 error
> > [INFO]
> >
> 
> > [ERROR] BUILD ERROR
> > [INFO]
> >
> 
> > [INFO] Error during page generation
> > Embedded error: Error rendering Maven report: Exit code: 1 - javadoc:
> > error - Unable to create directory
> >
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> > ngaby/coolcoders/dogHouse/
> > com.sun.tools.doclets.internal.toolkit.util.DocletAbortException
> > at
> >
> com.sun.tools.doclets.internal.toolkit.util.DirectoryManager.createDirec
> > tory(DirectoryManager.java:263)
> > at
> >
> com.sun.tools.doclets.internal.toolkit.util.Util.genWriter(Util.java:576
> > )
> >
> >
> >
> > Thank you for your help,
> >
> > Simon Kingaby
> >
> >
>
> -
> 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: Error running Javadoc plugin under CruiseControl

2007-10-19 Thread Simon Kingaby
All of the other TARGET folders are created correctly.  The error is
strictly relating to the JavaDocs plugin.  The checkstyle, PMD,
surefire, docck, etc., all work fine.
Thanks.
Is it important that the folder it is trying to create:
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
ngaby/coolcoders/dogHouse/
Has only one \ in the entire path, between apidocs and com?


-Original Message-
From: Wayne Fay [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 19, 2007 10:29 AM
To: Maven Users List
Subject: Re: Error running Javadoc plugin under CruiseControl

I doubt your CruiseControl user is the same as your regular login user
that you've run your test with. Does the CC user have the proper
privileges to create files/directories on the M: drive etc?

"Unable to create directory" -- seems like a filesystem problem.

Wayne

On 10/18/07, Simon Kingaby <[EMAIL PROTECTED]> wrote:
> I need some help debugging my Maven 2 script when it runs under
> CruiseControl, please.
>
>
>
> The javadoc plugin is included in pom.xml with no special parameters:
>
>  
>
>maven-javadoc-plugin
>
>  
>
>
>
> WORKS FROM COMMAND LINE
>
> When I run trunk>mvn clean scm:update install site from a Windows
> (server 2003 R2) command prompt:
>
> Maven echoes:
>
> [INFO] [javadoc:javadoc]
>
> Loading source files for package com.skingaby.coolcoders.dogHouse...
>
> Constructing Javadoc information...
>
> Standard Doclet version 1.6.0_02
>
> Building tree for all the packages and classes...
>
> Generating
>
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> ngaby/coolcoders/dogHouse/\Cat.html...
>
> Generating
>
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> ngaby/coolcoders/dogHouse/\Dog.html...
>
> ...
>
> Generating
>
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\stylesh
> eet.css...
>
> [INFO]
>
----
>
> [INFO] BUILD SUCCESSFUL
>
>
>
>
>
> FAILS IN CRUISECONTROL
>
> I have added the maven plugin to my CruiseControl config.xml:
>
>   pomfile="${projectdir}/pom.xml" goal="clean scm:update|install
> site">
>
> And execute it here:
>
>
>
>   
>
>
>
> The clean, scm:udpdate and install all work fine.  The site however,
> fails and the cruisecontrol log shows this:
>
> [INFO] Generate "JavaDocs" report.
> Loading source files for package com.skingaby.coolcoders.dogHouse...
> Constructing Javadoc information...
> Standard Doclet version 1.6.0_02
> Building tree for all the packages and classes...
> 1 error
> [INFO]
>

> [ERROR] BUILD ERROR
> [INFO]
>

> [INFO] Error during page generation
> Embedded error: Error rendering Maven report: Exit code: 1 - javadoc:
> error - Unable to create directory
>
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> ngaby/coolcoders/dogHouse/
> com.sun.tools.doclets.internal.toolkit.util.DocletAbortException
> at
>
com.sun.tools.doclets.internal.toolkit.util.DirectoryManager.createDirec
> tory(DirectoryManager.java:263)
> at
>
com.sun.tools.doclets.internal.toolkit.util.Util.genWriter(Util.java:576
> )
>
>
>
> Thank you for your help,
>
> Simon Kingaby
>
>

-
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: Error running Javadoc plugin under CruiseControl

2007-10-19 Thread Wayne Fay
I doubt your CruiseControl user is the same as your regular login user
that you've run your test with. Does the CC user have the proper
privileges to create files/directories on the M: drive etc?

"Unable to create directory" -- seems like a filesystem problem.

Wayne

On 10/18/07, Simon Kingaby <[EMAIL PROTECTED]> wrote:
> I need some help debugging my Maven 2 script when it runs under
> CruiseControl, please.
>
>
>
> The javadoc plugin is included in pom.xml with no special parameters:
>
>  
>
>maven-javadoc-plugin
>
>  
>
>
>
> WORKS FROM COMMAND LINE
>
> When I run trunk>mvn clean scm:update install site from a Windows
> (server 2003 R2) command prompt:
>
> Maven echoes:
>
> [INFO] [javadoc:javadoc]
>
> Loading source files for package com.skingaby.coolcoders.dogHouse...
>
> Constructing Javadoc information...
>
> Standard Doclet version 1.6.0_02
>
> Building tree for all the packages and classes...
>
> Generating
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> ngaby/coolcoders/dogHouse/\Cat.html...
>
> Generating
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> ngaby/coolcoders/dogHouse/\Dog.html...
>
> ...
>
> Generating
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\stylesh
> eet.css...
>
> [INFO]
> ----
>
> [INFO] BUILD SUCCESSFUL
>
>
>
>
>
> FAILS IN CRUISECONTROL
>
> I have added the maven plugin to my CruiseControl config.xml:
>
>   pomfile="${projectdir}/pom.xml" goal="clean scm:update|install
> site">
>
> And execute it here:
>
>
>
>   
>
>
>
> The clean, scm:udpdate and install all work fine.  The site however,
> fails and the cruisecontrol log shows this:
>
> [INFO] Generate "JavaDocs" report.
> Loading source files for package com.skingaby.coolcoders.dogHouse...
> Constructing Javadoc information...
> Standard Doclet version 1.6.0_02
> Building tree for all the packages and classes...
> 1 error
> [INFO]
> 
> [ERROR] BUILD ERROR
> [INFO]
> 
> [INFO] Error during page generation
> Embedded error: Error rendering Maven report: Exit code: 1 - javadoc:
> error - Unable to create directory
> M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
> ngaby/coolcoders/dogHouse/
> com.sun.tools.doclets.internal.toolkit.util.DocletAbortException
> at
> com.sun.tools.doclets.internal.toolkit.util.DirectoryManager.createDirec
> tory(DirectoryManager.java:263)
> at
> com.sun.tools.doclets.internal.toolkit.util.Util.genWriter(Util.java:576
> )
>
>
>
> Thank you for your help,
>
> Simon Kingaby
>
>

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



Error running Javadoc plugin under CruiseControl

2007-10-18 Thread Simon Kingaby
I need some help debugging my Maven 2 script when it runs under
CruiseControl, please.

 

The javadoc plugin is included in pom.xml with no special parameters:

  

maven-javadoc-plugin

  

 

WORKS FROM COMMAND LINE

When I run trunk>mvn clean scm:update install site from a Windows
(server 2003 R2) command prompt:

Maven echoes:

[INFO] [javadoc:javadoc]

Loading source files for package com.skingaby.coolcoders.dogHouse...

Constructing Javadoc information...

Standard Doclet version 1.6.0_02

Building tree for all the packages and classes...

Generating
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
ngaby/coolcoders/dogHouse/\Cat.html...

Generating
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
ngaby/coolcoders/dogHouse/\Dog.html...

...

Generating
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\stylesh
eet.css...

[INFO]


[INFO] BUILD SUCCESSFUL

 

 

FAILS IN CRUISECONTROL

I have added the maven plugin to my CruiseControl config.xml:

  

And execute it here:



   



The clean, scm:udpdate and install all work fine.  The site however,
fails and the cruisecontrol log shows this:

[INFO] Generate "JavaDocs" report.
Loading source files for package com.skingaby.coolcoders.dogHouse...
Constructing Javadoc information...
Standard Doclet version 1.6.0_02
Building tree for all the packages and classes...
1 error
[INFO]

[ERROR] BUILD ERROR
[INFO]

[INFO] Error during page generation
Embedded error: Error rendering Maven report: Exit code: 1 - javadoc:
error - Unable to create directory
M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs\com/ski
ngaby/coolcoders/dogHouse/
com.sun.tools.doclets.internal.toolkit.util.DocletAbortException
at
com.sun.tools.doclets.internal.toolkit.util.DirectoryManager.createDirec
tory(DirectoryManager.java:263)
at
com.sun.tools.doclets.internal.toolkit.util.Util.genWriter(Util.java:576
)

 

Thank you for your help,

Simon Kingaby 



Comparing Apache Continuum to CruiseControl

2007-08-08 Thread Huang, Yan
Hello,

Anyone knows inside regarding Apache Continuum by comparing with widely
popular CruiseControl? Why is Apache using Continuum for continuous
integration?

Thanks
Yan

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



Re: How is CruiseControl compare to Continuum?

2007-03-27 Thread Jerome Lacoste

On 3/26/07, Baz <[EMAIL PROTECTED]> wrote:


All,

How is Cruisecontrol compare to Continuum? I am working on Maven 2
project and it seems to be pretty much integrated with Maven 2.

Considerations:

1. Integration with M2.

2. Control:
a. Does the interface allow both release engineers and developers to
start and monitor builds easily?
b. How does it compare in general?

3. Archive:
a. I am planning to perform varies builds. Nightly, ad-hoc and
continuous. How can we easily archive ad-hoc and nighly builds? This
will include both build output and maven 2.0 reports.




This was crossposted to the CC user list

http://thread.gmane.org/gmane.comp.java.cruise-control.user/16443

I answered there

Jerome


RE: How is CruiseControl compare to Continuum?

2007-03-27 Thread EJ Ciramella
One of the biggest reasons we passed on Continuum was the lack of
distributed building (in the sense that on machine controls what gets
built on other machines in a cluster, NOT on build is spread across
multiple machines).  We have anywhere between 5 and 10 active branches
at any given time and four build machines.  This lets the build cluster
to build 4 branches of those at a time.

If you're on the fence, I'd take 2.6 or wait for 2.6.2 of cruisecontrol
and give that a shot. 

-Original Message-
From: Phill Moran [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 26, 2007 10:04 PM
To: 'Maven Users List'
Subject: RE: How is CruiseControl compare to Continuum?

Have you considered Luntbuild? 

-Original Message-
From: shinsato [mailto:[EMAIL PROTECTED] 
Sent: March 26, 2007 9:40 PM
To: users@maven.apache.org
Subject: Re: How is CruiseControl compare to Continuum?


CruiseControl works pretty well with Maven2, we picked it instead of
Continuum
last year because there were some reports that Continuum might be
immature
still. There are lots of opinions on the internet about Continuum and
CruiseControl, it would be interesting to hear what the Maven2 users
here think
about Continuum.
--
View this message in context:
http://www.nabble.com/How-is-CruiseControl-compare-to-Continuum--tf34683
44s177.h
tml#a9684871
Sent from the Maven - Users mailing list archive at Nabble.com.


-
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: How is CruiseControl compare to Continuum?

2007-03-26 Thread Phill Moran
Have you considered Luntbuild? 

-Original Message-
From: shinsato [mailto:[EMAIL PROTECTED] 
Sent: March 26, 2007 9:40 PM
To: users@maven.apache.org
Subject: Re: How is CruiseControl compare to Continuum?


CruiseControl works pretty well with Maven2, we picked it instead of Continuum
last year because there were some reports that Continuum might be immature
still. There are lots of opinions on the internet about Continuum and
CruiseControl, it would be interesting to hear what the Maven2 users here think
about Continuum.
--
View this message in context:
http://www.nabble.com/How-is-CruiseControl-compare-to-Continuum--tf3468344s177.h
tml#a9684871
Sent from the Maven - Users mailing list archive at Nabble.com.


-
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: How is CruiseControl compare to Continuum?

2007-03-26 Thread shinsato

CruiseControl works pretty well with Maven2, we picked it instead of
Continuum last year because there were some reports that Continuum might be
immature still. There are lots of opinions on the internet about Continuum
and CruiseControl, it would be interesting to hear what the Maven2 users
here think about Continuum.
-- 
View this message in context: 
http://www.nabble.com/How-is-CruiseControl-compare-to-Continuum--tf3468344s177.html#a9684871
Sent from the Maven - Users mailing list archive at Nabble.com.


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



How is CruiseControl compare to Continuum?

2007-03-26 Thread Baz

All,

How is Cruisecontrol compare to Continuum? I am working on Maven 2
project and it seems to be pretty much integrated with Maven 2.

Considerations:

1. Integration with M2.

2. Control:
a. Does the interface allow both release engineers and developers to
start and monitor builds easily?
b. How does it compare in general?

3. Archive:
a. I am planning to perform varies builds. Nightly, ad-hoc and
continuous. How can we easily archive ad-hoc and nighly builds? This
will include both build output and maven 2.0 reports.

Thanks.

B.

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



Problem running Cruisecontrol - clearcase - maven

2007-01-24 Thread mathapfahl

THX, now it works. 
But I get an other problem: 
BUILD FAILED
File.. C:\Dokumente und
Einstellungen\A13173\.maven\cache\maven-scm-plugin-1.4.1\plugin.jelly
Element... ant:fail
Line.. 99
Column 21
You must specify maven.scm.cvs.module

But I don't use cvs. I use ClearCase. 

Have anyone experience with clearcase running cruisecontrol ?



Arnaud HERITIER wrote:
> 
> This goal is now deprecated :
> http://maven.apache.org/maven-1.x/plugins/cruisecontrol/goals.html
> You have to launch it manuallly
> 
> Arnaud
> 
> On 1/23/07, mathapfahl <[EMAIL PROTECTED]> wrote:
>>
>>
>> Hi,
>>
>> I have a problem running Cruiscontrol with Maven 1.0
>> When I enter "maven cruisecontrol:run"
>> I've got the Problem:
>> Attempting to download jaxen-1.0-FCS-full.jar.
>> Error retrieving artifact from
>> [http://www.ibiblio.org/maven/jaxen/jars/jaxen-1.0-FCS-full.jar]:
>> java.net.ConnectException: Connection refu
>> sed: connect
>> WARNING: Failed to download jaxen-1.0-FCS-full.jar.
>> Attempting to download saxpath-1.0-FCS.jar.
>> Error retrieving artifact from
>> [http://www.ibiblio.org/maven/saxpath/jars/saxpath-1.0-FCS.jar]:
>> java.net.ConnectException: Connection refus
>> ed: connect
>> WARNING: Failed to download saxpath-1.0-FCS.jar.
>> The build cannot continue because of the following unsatisfied
>> dependencies:
>>
>> Why does the computer trying to download this ?
>> Shall I take this jars in the maven local repo ?
>> Or wants Maven this jars in the lib section of its own.
>> --
>> View this message in context:
>> http://www.nabble.com/Problem-running-Cruisecontrol-tf3062791s177.html#a8517129
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> -----
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Problem-running-Cruisecontrol-tf3062791s177.html#a8557036
Sent from the Maven - Users mailing list archive at Nabble.com.


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



Re: Problem running Cruisecontrol

2007-01-23 Thread Arnaud HERITIER

This goal is now deprecated :
http://maven.apache.org/maven-1.x/plugins/cruisecontrol/goals.html
You have to launch it manuallly

Arnaud

On 1/23/07, mathapfahl <[EMAIL PROTECTED]> wrote:



Hi,

I have a problem running Cruiscontrol with Maven 1.0
When I enter "maven cruisecontrol:run"
I've got the Problem:
Attempting to download jaxen-1.0-FCS-full.jar.
Error retrieving artifact from
[http://www.ibiblio.org/maven/jaxen/jars/jaxen-1.0-FCS-full.jar]:
java.net.ConnectException: Connection refu
sed: connect
WARNING: Failed to download jaxen-1.0-FCS-full.jar.
Attempting to download saxpath-1.0-FCS.jar.
Error retrieving artifact from
[http://www.ibiblio.org/maven/saxpath/jars/saxpath-1.0-FCS.jar]:
java.net.ConnectException: Connection refus
ed: connect
WARNING: Failed to download saxpath-1.0-FCS.jar.
The build cannot continue because of the following unsatisfied
dependencies:

Why does the computer trying to download this ?
Shall I take this jars in the maven local repo ?
Or wants Maven this jars in the lib section of its own.
--
View this message in context:
http://www.nabble.com/Problem-running-Cruisecontrol-tf3062791s177.html#a8517129
Sent from the Maven - Users mailing list archive at Nabble.com.


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




Problem running Cruisecontrol

2007-01-23 Thread mathapfahl

Hi,

I have a problem running Cruiscontrol with Maven 1.0
When I enter "maven cruisecontrol:run"
I've got the Problem:
Attempting to download jaxen-1.0-FCS-full.jar.
Error retrieving artifact from
[http://www.ibiblio.org/maven/jaxen/jars/jaxen-1.0-FCS-full.jar]:
java.net.ConnectException: Connection refu
sed: connect
WARNING: Failed to download jaxen-1.0-FCS-full.jar.
Attempting to download saxpath-1.0-FCS.jar.
Error retrieving artifact from
[http://www.ibiblio.org/maven/saxpath/jars/saxpath-1.0-FCS.jar]:
java.net.ConnectException: Connection refus
ed: connect
WARNING: Failed to download saxpath-1.0-FCS.jar.
The build cannot continue because of the following unsatisfied dependencies:

Why does the computer trying to download this ?
Shall I take this jars in the maven local repo ?
Or wants Maven this jars in the lib section of its own.
-- 
View this message in context: 
http://www.nabble.com/Problem-running-Cruisecontrol-tf3062791s177.html#a8517129
Sent from the Maven - Users mailing list archive at Nabble.com.


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



Problem running Cruisecontrol

2007-01-23 Thread mathapfahl


-- 
View this message in context: 
http://www.nabble.com/Problem-running-Cruisecontrol-tf3062780s177.html#a8517088
Sent from the Maven - Users mailing list archive at Nabble.com.


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



Re: Maven 2 and Cruisecontrol

2006-12-12 Thread Barrie Treloar

On 12/13/06, Rollo, Dan <[EMAIL PROTECTED]> wrote:

Yes, there is a Maven2 builder in CruiseControl. You should probably use the 
lastest from subversion, as it includes a bunch of fixes. The Maven2 builder 
was also available in the last released version (2.5).


I should probably ask on the CC list, but...

Does this builder support re-building dependent projects?
i.e project A and B are maven 2 projects and B depends on A.
So if A gets rebuilt because of a source change, B should also be
rebuilt since the jars from A have changed.

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



RE: Maven 2 and Cruisecontrol

2006-12-12 Thread Rollo, Dan
Yes, there is a Maven2 builder in CruiseControl. You should probably use the 
lastest from subversion, as it includes a bunch of fixes. The Maven2 builder 
was also available in the last released version (2.5).

Dan

-Original Message-
From: Pawel Niemiec [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 12, 2006 2:06 AM
To: Maven Users List
Subject: Maven 2 and Cruisecontrol

Hi,

Does anyone knows if there is a CruiseControl plugin for Maven version 2 
avaliable  ?

BR,


Paweł Niemiec
Software Engineer
 

 
AuSystems Sp. z o.o. Poland
Wynalazek 4 St.
PL-02-667 Warsaw
tel. (+48) 22 60 70 660
fax. (+48) 22 60 70 661 


--
This e-mail and any files transmitted with it may contain privileged or 
confidential information.
It is solely for use by the individual for whom it is intended, even if 
addressed incorrectly.
If you received this e-mail in error, please notify the sender; do not 
disclose, copy, distribute,
or take any action in reliance on the contents of this information; and delete 
it from
your system. Any other use of this e-mail is prohibited.

Thank you for your compliance.
--

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



Re: Maven 2 and Cruisecontrol

2006-12-12 Thread Tom Huybrechts

There used to be a M1 plugin that could generate cruisecontrol
configuration for a project.
http://maven.apache.org/maven-1.x/plugins/cruisecontrol/

There is a M2 cruisecontrol plugin for in the mojo-sandbox, but I
don't now what its status is. See http://mojo.codehaus.org

On 12/12/06, Siegmann Daniel, NY <[EMAIL PROTECTED]> wrote:

CruiseControl 2.5 supports Maven2 out of the box:
http://cruisecontrol.sourceforge.net/main/configxml.html#maven2

I'm not aware of any M2 plugin dealing with CC, but I'm not sure why one
would be needed.

--
Daniel Siegmann
FJA-US, Inc.
(212) 840-2618 ext. 139

-Original Message-
From: Pawel Niemiec [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 12, 2006 2:06 AM
To: Maven Users List
Subject: Maven 2 and Cruisecontrol

Hi,

Does anyone knows if there is a CruiseControl plugin for Maven version 2
avaliable  ?

BR,


Paweł Niemiec
Software Engineer



AuSystems Sp. z o.o. Poland
Wynalazek 4 St.
PL-02-667 Warsaw
tel. (+48) 22 60 70 660
fax. (+48) 22 60 70 661



-
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 2 and Cruisecontrol

2006-12-12 Thread Siegmann Daniel, NY
CruiseControl 2.5 supports Maven2 out of the box:
http://cruisecontrol.sourceforge.net/main/configxml.html#maven2 

I'm not aware of any M2 plugin dealing with CC, but I'm not sure why one
would be needed.

--
Daniel Siegmann
FJA-US, Inc.
(212) 840-2618 ext. 139

-Original Message-
From: Pawel Niemiec [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 12, 2006 2:06 AM
To: Maven Users List
Subject: Maven 2 and Cruisecontrol

Hi,

Does anyone knows if there is a CruiseControl plugin for Maven version 2
avaliable  ?

BR,


Paweł Niemiec
Software Engineer
 

 
AuSystems Sp. z o.o. Poland
Wynalazek 4 St.
PL-02-667 Warsaw
tel. (+48) 22 60 70 660
fax. (+48) 22 60 70 661 



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



Maven 2 and Cruisecontrol

2006-12-11 Thread Pawel Niemiec
Hi,

Does anyone knows if there is a CruiseControl plugin for Maven version 2
avaliable  ?

BR,


Paweł Niemiec
Software Engineer
 

 
AuSystems Sp. z o.o. Poland
Wynalazek 4 St.
PL-02-667 Warsaw
tel. (+48) 22 60 70 660 
fax. (+48) 22 60 70 661 



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



Re: Maven sIte generation from cruisecontrol

2006-11-29 Thread emerson cargnin

Does anyone know about this problem???

On 27/11/06, emerson cargnin <[EMAIL PROTECTED]> wrote:

Hi there

I'm generating the maven site from cruisecontrol.

When i try to generate manually i get the error:

...
...
...
xdoc:generate-from-pom:
   [echo] Generating xdocs from POM ...

BUILD FAILED
File.. 
/subversion/users/svnclient/.maven/cache/maven-xdoc-plugin-1.8/plugin.jelly
Element... velocity:merge
Line.. 492
Column 13
Invocation of method 'getText' in  class
org.apache.velocity.anakia.Escape threw exception class
java.lang.NullPointerException : null
Total time: 8 minutes 56 seconds
Finished at: Mon Nov 27 16:24:05 GMT 2006



I found in a list that I should configure the issue traker property in
project.xml. But I still get the same error.

But when I generate through cruisecontrol it works. Really weird...



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



Maven sIte generation from cruisecontrol

2006-11-27 Thread emerson cargnin

Hi there

I'm generating the maven site from cruisecontrol.

When i try to generate manually i get the error:

...
...
...
xdoc:generate-from-pom:
   [echo] Generating xdocs from POM ...

BUILD FAILED
File.. 
/subversion/users/svnclient/.maven/cache/maven-xdoc-plugin-1.8/plugin.jelly
Element... velocity:merge
Line.. 492
Column 13
Invocation of method 'getText' in  class
org.apache.velocity.anakia.Escape threw exception class
java.lang.NullPointerException : null
Total time: 8 minutes 56 seconds
Finished at: Mon Nov 27 16:24:05 GMT 2006



I found in a list that I should configure the issue traker property in
project.xml. But I still get the same error.

But when I generate through cruisecontrol it works. Really weird...

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



Re: [maven2] CruiseControl & surfire reports

2006-11-09 Thread Alex Schwartz

Hello everyone,

I figured out a simple solution to display the surefire test results of a
maven2 project in the CruiseControl build results page:

The CruiseControl config contains an element "merge" which
merges given test result XML files into the build result XML file.

Configure the merge elment as follows:





This solution works even in the case of multimodule projects.

(The implementation parses the given directory structure including the
subdirectories. All test result files are selected by the given pattern.)


Best Regards,

Alex






-- 
View this message in context: 
http://www.nabble.com/-maven2--CruiseControl---surfire-reports-tf2588912s177.html#a7258267
Sent from the Maven - Users mailing list archive at Nabble.com.


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



Re: [maven2] CruiseControl & surfire reports

2006-11-09 Thread Daniel Kulp
On Tuesday November 07 2006 9:08 am, Alex Schwartz wrote:
> Hi,
>
> I am running a maven2 build with CruiseControl
> (http://cruisecontrol.sourceforge.net/).
> Now I would like to configure maven2 such that the surefire XML test
> reports are collected
> for CruiseControl and displayed on the corresponding Build Results page
> of CruiseControl.
>
> I assume I'm not the first one using this combination
> So, has someone a working configuration?
> Or any hints, even about failing approaches?

We kind of accomplished it by using the ant builder to call to a small 
build.xml that forks MVN to do the build, but then collects the 
**/target/surefire-reports/*.xml files together into one place.

https://svn.apache.org/repos/asf/incubator/cxf/trunk/build.xml

Not exactly ideal, but if it works..

-- 
J. Daniel Kulp
Principal Engineer
IONA
P: 781-902-8727C: 508-380-7194   F:781-902-8001
[EMAIL PROTECTED]

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



Re: [maven2] CruiseControl & surfire reports

2006-11-09 Thread Alex Schwartz

Hello Prasad,

thanks for your answer and the complete list of references covering the 
"dashboard problem".

I am working with an m2-base build system of a product with 120+ maven
projects. Hence the current lack of a dashboard is a big issue. 
I appreciate any approach to realize a dashboard feature
-- even it's just a temporarily work-around solution. 

Maybe I can help to realize a solution...

Best Regards,

Alex




prasad wrote:
> 
> Hi Alex,
> 
> AFAIK, there isn't any such thing right now to help us in this regard.
> I am looking for something like that too.
> 
> The plugin at http://qalab.sourceforge.net doesn't track stats for
> surefire reports.
> 
> The plugin at http://xradar.sourceforge.net isn't available for m2 yet.
> 
> For what it's worth, here are some discussions that have been going on
> on the lists regarding this -
> http://docs.codehaus.org/display/MAVEN/Maven+Dashboard
> http://www.mail-archive.com/dev@maven.apache.org/msg60205.html
> http://www.mail-archive.com/dev@maven.apache.org/msg60537.html
> http://www.mail-archive.com/users@maven.apache.org/msg52186.html
> 
> Cheers
> Prasad
> 

-- 
View this message in context: 
http://www.nabble.com/-maven2--CruiseControl---surfire-reports-tf2588912s177.html#a7258161
Sent from the Maven - Users mailing list archive at Nabble.com.


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



Re: [maven2] CruiseControl & surfire reports

2006-11-07 Thread Prasad Kashyap

Hi Alex,

AFAIK, there isn't any such thing right now to help us in this regard.
I am looking for something like that too.

The plugin at http://qalab.sourceforge.net doesn't track stats for
surefire reports.

The plugin at http://xradar.sourceforge.net isn't available for m2 yet.

For what it's worth, here are some discussions that have been going on
on the lists regarding this -
http://docs.codehaus.org/display/MAVEN/Maven+Dashboard
http://www.mail-archive.com/dev@maven.apache.org/msg60205.html
http://www.mail-archive.com/dev@maven.apache.org/msg60537.html
http://www.mail-archive.com/users@maven.apache.org/msg52186.html

Cheers
Prasad

On 11/7/06, Alex Schwartz <[EMAIL PROTECTED]> wrote:

Hi,

I am running a maven2 build with CruiseControl
(http://cruisecontrol.sourceforge.net/).
Now I would like to configure maven2 such that the surefire XML test
reports are collected
for CruiseControl and displayed on the corresponding Build Results page
of CruiseControl.

I assume I'm not the first one using this combination
So, has someone a working configuration?
Or any hints, even about failing approaches?

Thanks in advance,

Alex

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



[maven2] CruiseControl & surfire reports

2006-11-07 Thread Alex Schwartz

Hi,

I am running a maven2 build with CruiseControl 
(http://cruisecontrol.sourceforge.net/).
Now I would like to configure maven2 such that the surefire XML test 
reports are collected
for CruiseControl and displayed on the corresponding Build Results page 
of CruiseControl.


I assume I'm not the first one using this combination
So, has someone a working configuration?
Or any hints, even about failing approaches?

Thanks in advance,

Alex

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



Maven2, CruiseControl and Surfire

2006-11-07 Thread Alexander Schwartz

Hi,

I am running a maven2 build with CruiseControl 
(http://cruisecontrol.sourceforge.net/).
Now I would like to configure maven2 such that the surefire XML test 
reports are collected
for CruiseControl and displayed on the corresponding Build Results page 
of CruiseControl.


I assume I'm not the first one using this combination
So, has someone a working configuration?
Or any hints, even about failing approaches?

Thanks in advance,

Alex






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



Re: [Cruisecontrol-user] jar file not included in application.xml in maven ear plugin

2006-08-24 Thread Stephane Nicoll

Plus you can maybe RTFM?
http://maven.apache.org/plugins/maven-ear-plugin/howto.html

See "Including a third party library in the generated application.xml"

s/


On 8/24/06, Jeffrey Fredrick <[EMAIL PROTECTED]> wrote:

does this have anything to do with cruisecontrol or are you just
hoping that by cross-posting here and the Maven list improves your
odds?

Jtf

On 8/23/06, manoj kaushik <[EMAIL PROTECTED]> wrote:
> hello everyone
>  when i sets the poperty to autogenerate application.xml it does not include
> a jar file however there is no such problem with war file and if i provide
> it the jar file manually it makes an extra folder during deployment on to
> server. plz reply soon if have the slution to this problem.
>   thanks in advance
>  Manoj
>

--

http://www.developertesting.com/

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Cruisecontrol-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/cruisecontrol-user




--
.::You're welcome ::.

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



Can not generate changelog report, and cruisecontrol email notifi cation list failed

2006-08-04 Thread manoj.kaushik
We use Maven with Cruisecontrol to drive project build.  It was all fine,
until one day...

About several weeks ago, we suddenly have problem about this "CVSROOT/users;
using empty email map" in both maven and cruisecontrol logs.

The problems are:
1. Email could not be sent after cruisecontrol build failed.
2. CVS file change log report can not be generated.  (The report is all
empty)


[java] cvs server: cannot find module `CVSROOT/users' - ignored
[java] [cc]May-26 11:30:35 CVS   - problem getting CVSROOT/users;
using empty email map


It may have something to do with "problem getting CVSROOT/users; using empty
email map".  But I do not have a clue how it happened.  I wonder the problem
is cvs server related.

Anyone had similar problems?  Any hint?  Or what is an intelligent question
to ask?


Thanks in advance
manoj kaushik

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

Re: Errors in adding cruisecontrol plugin

2006-06-08 Thread Kieran Brady

Hi Shinjan,

I'm afraid I don't know about jcoverage, sorry..

Kierna
- Original Message - 
From: "shinjan sen" <[EMAIL PROTECTED]>

To: "Maven Users List" 
Sent: Thursday, June 08, 2006 2:27 PM
Subject: Re: Errors in adding cruisecontrol plugin



Hi,
Thanks for the help.
I have a similar situation with the jcoverage plugin also.
I am trying to use
org.apache.maven.plugins
maven-jcoverage-plugin
which leads to an exception. Can you kindly tell me whether this plugin 
has

been discontinued for maven 2?

Many Thanks
Shinjan


On 6/8/06, Kieran Brady <[EMAIL PROTECTED]> wrote:


There is no CruiseControl plugin for Maven2 AFAIK, only for maven1.

You can just point your CC config.xml at a pom.xml and it will build it:
...

  



- Original Message -
From: "shinjan sen" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, June 08, 2006 1:53 PM
Subject: Errors in adding cruisecontrol plugin


> Hi,
> Can anyone kindly tell me how to integrate cruise control with maven2 ?
>
> I have added the following in the  section under  in
> POM.xml
>
>   
>  org.apache.maven.plugins
>  maven-cruisecontrol-plugin
>   
>
> It's throwing an exception telling that it can't find the plugin.
> "The plugin 'org.apache.maven.plugins:maven-cruisecontrol-plugin' does
not
> exist ..."
>
> But if I check at
>
http://www.ibiblio.org/maven2/net/sourceforge/cruisecontrol/cruisecontrol/
> I
> can see two versions of the plugin available.
>
> Kindly advise
>
> Many Thanks
>
> Shinjan
>


-
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: Errors in adding cruisecontrol plugin

2006-06-08 Thread shinjan sen

Hi,
Thanks for the help.
I have a similar situation with the jcoverage plugin also.
I am trying to use
org.apache.maven.plugins
maven-jcoverage-plugin
which leads to an exception. Can you kindly tell me whether this plugin has
been discontinued for maven 2?

Many Thanks
Shinjan


On 6/8/06, Kieran Brady <[EMAIL PROTECTED]> wrote:


There is no CruiseControl plugin for Maven2 AFAIK, only for maven1.

You can just point your CC config.xml at a pom.xml and it will build it:
...

  



- Original Message -
From: "shinjan sen" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, June 08, 2006 1:53 PM
Subject: Errors in adding cruisecontrol plugin


> Hi,
> Can anyone kindly tell me how to integrate cruise control with maven2 ?
>
> I have added the following in the  section under  in
> POM.xml
>
>   
>  org.apache.maven.plugins
>  maven-cruisecontrol-plugin
>   
>
> It's throwing an exception telling that it can't find the plugin.
> "The plugin 'org.apache.maven.plugins:maven-cruisecontrol-plugin' does
not
> exist ..."
>
> But if I check at
>
http://www.ibiblio.org/maven2/net/sourceforge/cruisecontrol/cruisecontrol/
> I
> can see two versions of the plugin available.
>
> Kindly advise
>
> Many Thanks
>
> Shinjan
>


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




Re: Errors in adding cruisecontrol plugin

2006-06-08 Thread Kieran Brady

There is no CruiseControl plugin for Maven2 AFAIK, only for maven1.

You can just point your CC config.xml at a pom.xml and it will build it:
...

  
 


- Original Message - 
From: "shinjan sen" <[EMAIL PROTECTED]>

To: 
Sent: Thursday, June 08, 2006 1:53 PM
Subject: Errors in adding cruisecontrol plugin



Hi,
Can anyone kindly tell me how to integrate cruise control with maven2 ?

I have added the following in the  section under  in
POM.xml

  
 org.apache.maven.plugins
 maven-cruisecontrol-plugin
  

It's throwing an exception telling that it can't find the plugin.
"The plugin 'org.apache.maven.plugins:maven-cruisecontrol-plugin' does not
exist ..."

But if I check at
http://www.ibiblio.org/maven2/net/sourceforge/cruisecontrol/cruisecontrol/ 
I

can see two versions of the plugin available.

Kindly advise

Many Thanks

Shinjan




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



Errors in adding cruisecontrol plugin

2006-06-08 Thread shinjan sen

Hi,
Can anyone kindly tell me how to integrate cruise control with maven2 ?

I have added the following in the  section under  in
POM.xml

  
 org.apache.maven.plugins
 maven-cruisecontrol-plugin
  

It's throwing an exception telling that it can't find the plugin.
"The plugin 'org.apache.maven.plugins:maven-cruisecontrol-plugin' does not
exist ..."

But if I check at
http://www.ibiblio.org/maven2/net/sourceforge/cruisecontrol/cruisecontrol/ I
can see two versions of the plugin available.

Kindly advise

Many Thanks

Shinjan


Re: Issue in using Maven2 with CruiseControl & Jcoverage

2006-06-08 Thread shinjan sen

Thanks Adam,
I have downloaded some jars after trying out with various versions but I am
getting a null pointer exception : java.lang.NullPointerException  at
org.apache.maven.plugin.DefaultPluginManager.addPlugin(
DefaultPluginManager.java:292) ... [Stacktrace follows]

I am using the following POM
...
 
 
   
   jcoverage
   jcoverage
   1.0.5
  
 
 

I had initially given the plugin groupId and artifactid initially
as  org.apache.maven.plugins
 maven-checkstyle-plugin
but in that case the system wasn't being able to download any jar as it
couldn't find any and was throwing an exception.

Now I can see a jcoverage.jar file in my .M2 repository but am getting the
exception when I try to use mvn site

Thanks
Shinjan






On 6/8/06, Adam Leggett <[EMAIL PROTECTED]> wrote:


With regard to plugin status im unsure but Cruise 2.4.1 has built in
support for m2 projects.

-Original Message-
From: shinjan sen [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 08, 2006 8:50 AM
To: users@maven.apache.org
Subject: Issue in using Maven2 with CruiseControl & Jcoverage


Hi,
I couldn't find the appropriate plugins for CruiseControl and Jcoverage
for Maven2 though it's available for maven1.

Can anyone kindly let me know if this is a fact? If true, what's the
best alternative we have?

Thanks

Shinjan


===
The contents of this email are intended for the named addresses and may
contain confidential and/or privileged material. If received in error,
please contact UPCO head office on +44(0)113 201 0600 and then delete
the entire mail from your system. Unauthorised review, distribution,
disclosure or other use of information could constitute a breach of
confidence. Your co-operation in this matter is greatly appreciated.

Every effort has been taken to ensure that this email and any
attachments are virus-free. However, UPCO does not make any warranty
to this effect, and is not liable for any damage done by an infected
email message or attachment. UPCO recommends that all emails and
attachments are checked before opening.

All views or opinions expressed in this electronic message and its
attachements are those of the sender and do not necessarily reflect
the views and opinions of The Ultimate People Company Ltd.

===



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




RE: Issue in using Maven2 with CruiseControl & Jcoverage

2006-06-08 Thread Adam Leggett
With regard to plugin status im unsure but Cruise 2.4.1 has built in
support for m2 projects.

-Original Message-
From: shinjan sen [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 08, 2006 8:50 AM
To: users@maven.apache.org
Subject: Issue in using Maven2 with CruiseControl & Jcoverage


Hi,
I couldn't find the appropriate plugins for CruiseControl and Jcoverage
for Maven2 though it's available for maven1.

Can anyone kindly let me know if this is a fact? If true, what's the
best alternative we have?

Thanks

Shinjan

===
The contents of this email are intended for the named addresses and may 
contain confidential and/or privileged material. If received in error, 
please contact UPCO head office on +44(0)113 201 0600 and then delete 
the entire mail from your system. Unauthorised review, distribution, 
disclosure or other use of information could constitute a breach of 
confidence. Your co-operation in this matter is greatly appreciated.

Every effort has been taken to ensure that this email and any 
attachments are virus-free. However, UPCO does not make any warranty 
to this effect, and is not liable for any damage done by an infected 
email message or attachment. UPCO recommends that all emails and 
attachments are checked before opening.

All views or opinions expressed in this electronic message and its 
attachements are those of the sender and do not necessarily reflect 
the views and opinions of The Ultimate People Company Ltd.
===



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



Issue in using Maven2 with CruiseControl & Jcoverage

2006-06-08 Thread shinjan sen

Hi,
I couldn't find the appropriate plugins for CruiseControl and Jcoverage for
Maven2 though it's available for maven1.

Can anyone kindly let me know if this is a fact? If true, what's the best
alternative we have?

Thanks

Shinjan


Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Wayne Fay

Implement both, after 30 or 60 days, decide which one you like best
and drop the other. ;-)

Wayne

On 5/4/06, Eric Pugh <[EMAIL PROTECTED]> wrote:

I think a lot of it just comes down to personal preference.  If your
decision isn't driven by a specific feature/missing feature of one or
the other, then go with the one you are more comfortable with!  Often
having expertise in one or the other is a better reason to pick it.
After all, it's just a glorified cron job!  We should be spending
time on coding, not CI.

And, having multiple successful solutions is good for moving the
market forward...

Eric

On May 4, 2006, at 2:00 PM, Siegmann Daniel, NY wrote:

>> clean site:deploy deploy).  I have never used cruise control
>> but I heard it's hard to configure.
>
> I have not found CruiseControl difficult to configure. It's not more
> difficult than Maven is, and adding more projects to the
> configuration is
> mostly copy-paste. CC also comes with a nice web-based status page (in
> addition to email reports) which is very simple to set up.
>
> --
> Daniel Siegmann
> FJA-US, Inc.
> (212) 840-2618 ext. 139
>
> -
> 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: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Eric Pugh
I think a lot of it just comes down to personal preference.  If your  
decision isn't driven by a specific feature/missing feature of one or  
the other, then go with the one you are more comfortable with!  Often  
having expertise in one or the other is a better reason to pick it.   
After all, it's just a glorified cron job!  We should be spending  
time on coding, not CI.


And, having multiple successful solutions is good for moving the  
market forward...


Eric

On May 4, 2006, at 2:00 PM, Siegmann Daniel, NY wrote:


clean site:deploy deploy).  I have never used cruise control
but I heard it's hard to configure.


I have not found CruiseControl difficult to configure. It's not more
difficult than Maven is, and adding more projects to the  
configuration is

mostly copy-paste. CC also comes with a nice web-based status page (in
addition to email reports) which is very simple to set up.

--
Daniel Siegmann
FJA-US, Inc.
(212) 840-2618 ext. 139

-
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: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Siegmann Daniel, NY
> clean site:deploy deploy).  I have never used cruise control 
> but I heard it's hard to configure.

I have not found CruiseControl difficult to configure. It's not more
difficult than Maven is, and adding more projects to the configuration is
mostly copy-paste. CC also comes with a nice web-based status page (in
addition to email reports) which is very simple to set up.

--
Daniel Siegmann
FJA-US, Inc.
(212) 840-2618 ext. 139

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



RE: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Siegmann Daniel, NY
We have been using CruiseControl for awhile now, with a number of projects
running on M1. We are happy with it - happy enough that we will not be
evaluating Continuum. When we switch to M2 (we're working on converting an
ant project) we will continue using CC. The latest version of CC supports
M2.

--
Daniel Siegmann
FJA-US, Inc.
(212) 840-2618 ext. 139

> -Original Message-
> From: Sebastien Arbogast [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, May 03, 2006 7:28 PM
> To: Maven users list
> Subject: [m2] Continuum or CruiseControl as a CI server ?
> 
> 
> I'm trying to find the best CI tool for a brand new 
> Maven2-built project and I'd like to have your experience 
> feedback about which one to choose between Continuum and 
> CruiseControl. I know that, as Continuum is a spin-off of 
> Maven project it should be better integrated with it. But on 
> the other hand, CruiseControl seems more mature to me, even 
> if, to be honnest, I haven't tried any of them in a real 
> situation yet. That's why I need something more concrete. Is 
> there any Maven 2 cruisecontrol plugin somewhere as there was 
> one for Maven 1 ? What do you think ?
> 
> --
> Sébastien Arbogast
> 
> The Epseelon Project : http://www.epseelon.net
> Blog : http://sebastien-arbogast.epseelon.net
> TagSpot : http://www.tagspot.org
> 

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



Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Geoffrey De Smet
I 've used both continuum and cruisecontrol, IMHO continuum is a lot 
better and easier, especially for maven 2 multiprojects.


Sebastien Arbogast wrote:
I'm trying to find the best CI tool for a brand new Maven2-built project 
and

I'd like to have your experience feedback about which one to choose between
Continuum and CruiseControl.
I know that, as Continuum is a spin-off of Maven project it should be 
better

integrated with it. But on the other hand, CruiseControl seems more mature
to me, even if, to be honnest, I haven't tried any of them in a real
situation yet. That's why I need something more concrete. Is there any 
Maven

2 cruisecontrol plugin somewhere as there was one for Maven 1 ? What do you
think ?

--
Sébastien Arbogast

The Epseelon Project : http://www.epseelon.net
Blog : http://sebastien-arbogast.epseelon.net
TagSpot : http://www.tagspot.org



--
With kind regards,
Geoffrey De Smet


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



Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread jerome lacoste

On 5/4/06, Eric Pugh <[EMAIL PROTECTED]> wrote:

I used to be a big advocate of CC.  I've had a contribution committed
to the main code base in almost everyone of the last couple point
releases.  My big beef with CC breaks down to two things:

1) Speed
2) Web interface

I find that with long builds that output a lot of data, the CC method
of using XSL transformations to pull data out is too painful.
It works, but it's slow.


I generally agree though:

- XSL transformations are cached. so the transformation cost happens once.
- we could always change the webapp to preformat the pages before one
gets to see the pages.
- you can also configure the app to minimize the information to store
in the logs and keep the raw logs on the side.


I also dislike the lack of a web interface for
managing the application.  Sure, there is a JMX interface, but it is
clunky to use.  And I can't add/remove builds from the web
interface.  I have to log onto my remote build server and tweak
another xml file.


1- there's a web interface in the works
2- you can use the ccconfig project to remotely edit the config file

The thing that bothers me most with CC is that you have to make the
initial checkout by hand.


In contrast, Continuum is all web configurable.  It's fast because it
doesn't parse the log file, it just looks for the result of the
build.  Unless you need some of the advanced stuff the CC provides,
like some of the notifiers or SCM support, Continuum just works better.


I guess that in the future, CC will become easier to use and Continuum
will have more high end features.

J

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



Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Eric Pugh
I used to be a big advocate of CC.  I've had a contribution committed  
to the main code base in almost everyone of the last couple point  
releases.  My big beef with CC breaks down to two things:


1) Speed
2) Web interface

I find that with long builds that output a lot of data, the CC method  
of using XSL transformations to pull data out is too painful.  It  
works, but it's slow.  I also dislike the lack of a web interface for  
managing the application.  Sure, there is a JMX interface, but it is  
clunky to use.  And I can't add/remove builds from the web  
interface.  I have to log onto my remote build server and tweak  
another xml file.


In contrast, Continuum is all web configurable.  It's fast because it  
doesn't parse the log file, it just looks for the result of the  
build.  Unless you need some of the advanced stuff the CC provides,  
like some of the notifiers or SCM support, Continuum just works better.


Eric


On May 4, 2006, at 11:36 AM, jerome lacoste wrote:


On 5/4/06, Kaare Nilsen <[EMAIL PROTECTED]> wrote:

Well.. i use it myself :)
But yes there are several limitations in multi-module projects and
cruise control in general. As of now we do not have any clever
solutions for making sure that when one module changes, then the
modules that depends on it also get build, the reactor build order is
not considered and so on, but we are in the process of working out
some of the issues, but it will for sure take a while before
cruisecontrol can be as good as continuum when it comes to maven2
support (most likly never).


Sebastien,

you may want to have a look:

http://www.coffeebreaks.org/blogs/?page_id=15

In the last slides of the CC & m2 talk, there's some information on
how to minimize the information in the pom.

As to the main issues to solve (information redundancy and build
order), there's the mojo plugin Kaare pointed you to that we are going
to improve. The main question today when using CC is to decide the
granularity you want to have (do you map every pom to a project or
not?), because CC relies today on m2's reactor to identify the correct
build order, thus requires you to have a somewhat coarse grained
mapping.

I am pretty certain CC's support for m2 will improve a lot in the next
months, althought I think today's it is pretty good. I use it to build
without problems several OSS projects whose build is based on m2 as
well as some closed source software. One of the CC install has around
200 maven sub-projects, grouped into a handfull of CC projects. That
works because the projects themselves are pretty fast to build.

Jerome

-
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: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread jerome lacoste

On 5/4/06, Kaare Nilsen <[EMAIL PROTECTED]> wrote:

Well.. i use it myself :)
But yes there are several limitations in multi-module projects and
cruise control in general. As of now we do not have any clever
solutions for making sure that when one module changes, then the
modules that depends on it also get build, the reactor build order is
not considered and so on, but we are in the process of working out
some of the issues, but it will for sure take a while before
cruisecontrol can be as good as continuum when it comes to maven2
support (most likly never).


Sebastien,

you may want to have a look:

http://www.coffeebreaks.org/blogs/?page_id=15

In the last slides of the CC & m2 talk, there's some information on
how to minimize the information in the pom.

As to the main issues to solve (information redundancy and build
order), there's the mojo plugin Kaare pointed you to that we are going
to improve. The main question today when using CC is to decide the
granularity you want to have (do you map every pom to a project or
not?), because CC relies today on m2's reactor to identify the correct
build order, thus requires you to have a somewhat coarse grained
mapping.

I am pretty certain CC's support for m2 will improve a lot in the next
months, althought I think today's it is pretty good. I use it to build
without problems several OSS projects whose build is based on m2 as
well as some closed source software. One of the CC install has around
200 maven sub-projects, grouped into a handfull of CC projects. That
works because the projects themselves are pretty fast to build.

Jerome

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



Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Kaare Nilsen

Sorry about that.. I have everything setup on my machine, so I forgot
to point out that there is something more to be done, when building
plugins in the sanbox :)

But you will need to add the repositories as documented here:
http://mojo.codehaus.org/using-sandbox-plugins.html to your checked
out version of the pom, and then it should build quite ok

/Kaare

On 04/05/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:

I've checked it out, and when I tried to run mvn install on it, I got the
following exception:

W:\data\dev\cruisecontrol-maven-plugin>mvn install
[INFO] Scanning for projects...
[INFO]

[ERROR] FATAL ERROR
[INFO]

[INFO] Failed to resolve artifact.

GroupId: org.codehaus.mojo
ArtifactId: mojo-sandbox
Version: 2-SNAPSHOT

Reason: Unable to download the artifact from any repository

  org.codehaus.mojo:mojo-sandbox:pom:2-SNAPSHOT

from the specified remote repositories:
  central (http://repo1.maven.org/maven2)


[INFO]

[INFO] Trace
org.apache.maven.reactor.MavenExecutionException: Cannot find parent:
org.codeha
us.mojo:mojo-sandbox for project:
null:cruisecontrol-maven-plugin:maven-plugin:1
.0-SNAPSHOT
at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:365)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:278)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java
:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java
:430)

at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.project.ProjectBuildingException: Cannot find
parent
: org.codehaus.mojo:mojo-sandbox for project:
null:cruisecontrol-maven-plugin:ma
ven-plugin:1.0-SNAPSHOT
at
org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(D
efaultMavenProjectBuilder.java:1161)
at org.apache.maven.project.DefaultMavenProjectBuilder.buildInternal
(Def
aultMavenProjectBuilder.java:674)
at
org.apache.maven.project.DefaultMavenProjectBuilder.buildFromSourceFi
leInternal(DefaultMavenProjectBuilder.java:416)
at org.apache.maven.project.DefaultMavenProjectBuilder.build
(DefaultMave
nProjectBuilder.java:192)
at org.apache.maven.DefaultMaven.getProject(DefaultMaven.java:515)
at org.apache.maven.DefaultMaven.collectProjects(DefaultMaven.java
:447)
at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:351)
... 11 more
Caused by: org.apache.maven.project.ProjectBuildingException: POM '
org.codehaus.
mojo:mojo-sandbox' not found in repository: Unable to download the artifact
from
 any repository

  org.codehaus.mojo:mojo-sandbox:pom:2-SNAPSHOT

from the specified remote repositories:
  central (http://repo1.maven.org/maven2)

at
org.apache.maven.project.DefaultMavenProjectBuilder.findModelFromRepo
sitory(DefaultMavenProjectBuilder.java:513)
at
org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(D
efaultMavenProjectBuilder.java:1157)
... 17 more
Caused by: org.apache.maven.artifact.resolver.ArtifactNotFoundException:
Unable
to download the artifact from any repository

  org.codehaus.mojo:mojo-sandbox:pom:2-SNAPSHOT

from the specified remote repositories:
  central (http://repo1.maven.org/maven2)

at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(De
faultArtifactResolver.java:136)
at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(De
faultArtifactResolver.java:63)
at
org.apache.maven.project.DefaultMavenProjectBuilder.findModelFromRepo
sitory(DefaultMavenProjectBuilder.java:467)
... 18 more
Caused by: org.apache.maven.wagon.ResourceDoesNotExistException: Unable to
downl
oad the artifact from any repository
at org.apache.maven.artifact.manager.DefaultWagonManager.getArtifact
(Def
aultWagonManager.java:260)
at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(De
faultArtifactResolver.java:124)
... 20 more
[INFO]

[INFO] Total time: < 1 second
[INFO] Finished at: Thu May 04 11:55:23 CEST 2006
[INFO

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Sebastien Arbogast

I've checked it out, and when I tried to run mvn install on it, I got the
following exception:

W:\data\dev\cruisecontrol-maven-plugin>mvn install
[INFO] Scanning for projects...
[INFO]

[ERROR] FATAL ERROR
[INFO]

[INFO] Failed to resolve artifact.

GroupId: org.codehaus.mojo
ArtifactId: mojo-sandbox
Version: 2-SNAPSHOT

Reason: Unable to download the artifact from any repository

 org.codehaus.mojo:mojo-sandbox:pom:2-SNAPSHOT

from the specified remote repositories:
 central (http://repo1.maven.org/maven2)


[INFO]

[INFO] Trace
org.apache.maven.reactor.MavenExecutionException: Cannot find parent:
org.codeha
us.mojo:mojo-sandbox for project:
null:cruisecontrol-maven-plugin:maven-plugin:1
.0-SNAPSHOT
   at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:365)
   at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:278)
   at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
   at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.
java:39)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAcces
sorImpl.java:25)
   at java.lang.reflect.Method.invoke(Method.java:585)
   at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java
:315)
   at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
   at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java
:430)

   at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.project.ProjectBuildingException: Cannot find
parent
: org.codehaus.mojo:mojo-sandbox for project:
null:cruisecontrol-maven-plugin:ma
ven-plugin:1.0-SNAPSHOT
   at
org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(D
efaultMavenProjectBuilder.java:1161)
   at org.apache.maven.project.DefaultMavenProjectBuilder.buildInternal
(Def
aultMavenProjectBuilder.java:674)
   at
org.apache.maven.project.DefaultMavenProjectBuilder.buildFromSourceFi
leInternal(DefaultMavenProjectBuilder.java:416)
   at org.apache.maven.project.DefaultMavenProjectBuilder.build
(DefaultMave
nProjectBuilder.java:192)
   at org.apache.maven.DefaultMaven.getProject(DefaultMaven.java:515)
   at org.apache.maven.DefaultMaven.collectProjects(DefaultMaven.java
:447)
   at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:351)
   ... 11 more
Caused by: org.apache.maven.project.ProjectBuildingException: POM '
org.codehaus.
mojo:mojo-sandbox' not found in repository: Unable to download the artifact
from
any repository

 org.codehaus.mojo:mojo-sandbox:pom:2-SNAPSHOT

from the specified remote repositories:
 central (http://repo1.maven.org/maven2)

   at
org.apache.maven.project.DefaultMavenProjectBuilder.findModelFromRepo
sitory(DefaultMavenProjectBuilder.java:513)
   at
org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(D
efaultMavenProjectBuilder.java:1157)
   ... 17 more
Caused by: org.apache.maven.artifact.resolver.ArtifactNotFoundException:
Unable
to download the artifact from any repository

 org.codehaus.mojo:mojo-sandbox:pom:2-SNAPSHOT

from the specified remote repositories:
 central (http://repo1.maven.org/maven2)

   at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(De
faultArtifactResolver.java:136)
   at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(De
faultArtifactResolver.java:63)
   at
org.apache.maven.project.DefaultMavenProjectBuilder.findModelFromRepo
sitory(DefaultMavenProjectBuilder.java:467)
   ... 18 more
Caused by: org.apache.maven.wagon.ResourceDoesNotExistException: Unable to
downl
oad the artifact from any repository
   at org.apache.maven.artifact.manager.DefaultWagonManager.getArtifact
(Def
aultWagonManager.java:260)
   at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(De
faultArtifactResolver.java:124)
   ... 20 more
[INFO]

[INFO] Total time: < 1 second
[INFO] Finished at: Thu May 04 11:55:23 CEST 2006
[INFO] Final Memory: 1M/2M
[INFO]


I guess I must configure codehaus repository somewhere but I don't know how.

2006/5/4, Sebastien Arbogast <[EMAIL PROTECTED]>:


It's fine for Subversion and mail notifications. But are these the only
limitations of this development version ? In particular, is it safe to use
it on a multi-module project ?


2006/5/4, Kaare Nilsen < [EMAIL PROTECTED]>:

> There is one(cruisecontrol config genera

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Kaare Nilsen

Well.. i use it myself :)
But yes there are several limitations in multi-module projects and
cruise control in general. As of now we do not have any clever
solutions for making sure that when one module changes, then the
modules that depends on it also get build, the reactor build order is
not considered and so on, but we are in the process of working out
some of the issues, but it will for sure take a while before
cruisecontrol can be as good as continuum when it comes to maven2
support (most likly never).

/K

On 04/05/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:

It's fine for Subversion and mail notifications. But are these the only
limitations of this development version ? In particular, is it safe to use
it on a multi-module project ?


2006/5/4, Kaare Nilsen <[EMAIL PROTECTED]>:
>
> There is one(cruisecontrol config generation) started at the mojo project.
>
> 
http://svn.mojo.codehaus.org/trunk/mojo/mojo-sandbox/cruisecontrol-maven-plugin/
>
> You can download this and install it manually and give it a go (though
> very early in the dev process, and only supports subversion and mail
> notifs), it will generate a cruisecontrol setup which will act the
> same way as an add m2 project in continuum.
> Also a mvn site:site on it will provide you with some documentation on
> use.
>
> /Kaare
>
> On 04/05/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:
> > Honestly, intuitively I have a small preference for CruiseControl. The
> only
> > thing that bothers me is the redundancy of information between the POM
> and
> > CC configuration file. So if there was a Maven2 plugin to generate the
> > latter from the former, as there was one for Maven1, that would be
> great.
> >
> > 2006/5/4, Kieran Brady <[EMAIL PROTECTED]>:
> > >
> > > We're using the latest CruiseControl with Maven 2 successfully - no
> > > problem
> > > configuring it. At the time I neeeded to implement a CI system back in
> > > October, Continuum wasn't mature enough and I couldn't realistically
> put
> > > it
> > > forward as an option as I couldn't get it to work :) I haven't tried
> > > Continuum since as CruiseControl has been happily doing multi-module
> > > builds,
> > > single projects, profiled builds, nightly builds running all reports,
> on
> > > demand builds and so on and so I've no reason to migrate.
> > >
> > > A couple of links:
> > >
> > > http://cruisecontrol.sourceforge.net/main/configxml.html
> > > http://jira.public.thoughtworks.org/browse/CC-363
> > > http://confluence.public.thoughtworks.org/display/CC/Home
> > >
> > >
> > > - Original Message -
> > > From: "Alexandre Poitras" <[EMAIL PROTECTED]>
> > > To: "Maven Users List" 
> > > Sent: Thursday, May 04, 2006 3:52 AM
> > > Subject: Re: [m2] Continuum or CruiseControl as a CI server ?
> > >
> > >
> > > Well Continuum does the job for me, never thought about switching.
> > > What I like about continuum is that you can customize the goals
> > > invoked during a build (for instance, clean site:deploy deploy).  I
> > > have never used cruise control but I heard it's hard to configure.
> > >
> > > On 5/3/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:
> > > > I'm trying to find the best CI tool for a brand new Maven2-built
> project
> > > > and
> > > > I'd like to have your experience feedback about which one to choose
> > > > between
> > > > Continuum and CruiseControl.
> > > > I know that, as Continuum is a spin-off of Maven project it should
> be
> > > > better
> > > > integrated with it. But on the other hand, CruiseControl seems more
> > > mature
> > > > to me, even if, to be honnest, I haven't tried any of them in a real
> > > > situation yet. That's why I need something more concrete. Is there
> any
> > > > Maven
> > > > 2 cruisecontrol plugin somewhere as there was one for Maven 1 ? What
> do
> > > > you
> > > > think ?
> > > >
> > > > --
> > > > Sébastien Arbogast
> > > >
> > > > The Epseelon Project : http://www.epseelon.net
> > > > Blog : http://sebastien-arbogast.epseelon.net
> > > > TagSpot : http://www.tagspot.org
> > > >
> > > >
> > >
> > > -
> >

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Sebastien Arbogast

It's fine for Subversion and mail notifications. But are these the only
limitations of this development version ? In particular, is it safe to use
it on a multi-module project ?


2006/5/4, Kaare Nilsen <[EMAIL PROTECTED]>:


There is one(cruisecontrol config generation) started at the mojo project.

http://svn.mojo.codehaus.org/trunk/mojo/mojo-sandbox/cruisecontrol-maven-plugin/

You can download this and install it manually and give it a go (though
very early in the dev process, and only supports subversion and mail
notifs), it will generate a cruisecontrol setup which will act the
same way as an add m2 project in continuum.
Also a mvn site:site on it will provide you with some documentation on
use.

/Kaare

On 04/05/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:
> Honestly, intuitively I have a small preference for CruiseControl. The
only
> thing that bothers me is the redundancy of information between the POM
and
> CC configuration file. So if there was a Maven2 plugin to generate the
> latter from the former, as there was one for Maven1, that would be
great.
>
> 2006/5/4, Kieran Brady <[EMAIL PROTECTED]>:
> >
> > We're using the latest CruiseControl with Maven 2 successfully - no
> > problem
> > configuring it. At the time I neeeded to implement a CI system back in
> > October, Continuum wasn't mature enough and I couldn't realistically
put
> > it
> > forward as an option as I couldn't get it to work :) I haven't tried
> > Continuum since as CruiseControl has been happily doing multi-module
> > builds,
> > single projects, profiled builds, nightly builds running all reports,
on
> > demand builds and so on and so I've no reason to migrate.
> >
> > A couple of links:
> >
> > http://cruisecontrol.sourceforge.net/main/configxml.html
> > http://jira.public.thoughtworks.org/browse/CC-363
> > http://confluence.public.thoughtworks.org/display/CC/Home
> >
> >
> > - Original Message -
> > From: "Alexandre Poitras" <[EMAIL PROTECTED]>
> > To: "Maven Users List" 
> > Sent: Thursday, May 04, 2006 3:52 AM
> > Subject: Re: [m2] Continuum or CruiseControl as a CI server ?
> >
> >
> > Well Continuum does the job for me, never thought about switching.
> > What I like about continuum is that you can customize the goals
> > invoked during a build (for instance, clean site:deploy deploy).  I
> > have never used cruise control but I heard it's hard to configure.
> >
> > On 5/3/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:
> > > I'm trying to find the best CI tool for a brand new Maven2-built
project
> > > and
> > > I'd like to have your experience feedback about which one to choose
> > > between
> > > Continuum and CruiseControl.
> > > I know that, as Continuum is a spin-off of Maven project it should
be
> > > better
> > > integrated with it. But on the other hand, CruiseControl seems more
> > mature
> > > to me, even if, to be honnest, I haven't tried any of them in a real
> > > situation yet. That's why I need something more concrete. Is there
any
> > > Maven
> > > 2 cruisecontrol plugin somewhere as there was one for Maven 1 ? What
do
> > > you
> > > think ?
> > >
> > > --
> > > Sébastien Arbogast
> > >
> > > The Epseelon Project : http://www.epseelon.net
> > > Blog : http://sebastien-arbogast.epseelon.net
> > > TagSpot : http://www.tagspot.org
> > >
> > >
> >
> > -
> > 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]
> >
> >
>
>
> --
> Sébastien Arbogast
>
> The Epseelon Project : http://www.epseelon.net
> Blog : http://sebastien-arbogast.epseelon.net
> TagSpot : http://www.tagspot.org
>
>

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





--
Sébastien Arbogast

The Epseelon Project : http://www.epseelon.net
Blog : http://sebastien-arbogast.epseelon.net
TagSpot : http://www.tagspot.org


Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Kaare Nilsen

There is one(cruisecontrol config generation) started at the mojo project.
http://svn.mojo.codehaus.org/trunk/mojo/mojo-sandbox/cruisecontrol-maven-plugin/

You can download this and install it manually and give it a go (though
very early in the dev process, and only supports subversion and mail
notifs), it will generate a cruisecontrol setup which will act the
same way as an add m2 project in continuum.
Also a mvn site:site on it will provide you with some documentation on use.

/Kaare

On 04/05/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:

Honestly, intuitively I have a small preference for CruiseControl. The only
thing that bothers me is the redundancy of information between the POM and
CC configuration file. So if there was a Maven2 plugin to generate the
latter from the former, as there was one for Maven1, that would be great.

2006/5/4, Kieran Brady <[EMAIL PROTECTED]>:
>
> We're using the latest CruiseControl with Maven 2 successfully - no
> problem
> configuring it. At the time I neeeded to implement a CI system back in
> October, Continuum wasn't mature enough and I couldn't realistically put
> it
> forward as an option as I couldn't get it to work :) I haven't tried
> Continuum since as CruiseControl has been happily doing multi-module
> builds,
> single projects, profiled builds, nightly builds running all reports, on
> demand builds and so on and so I've no reason to migrate.
>
> A couple of links:
>
> http://cruisecontrol.sourceforge.net/main/configxml.html
> http://jira.public.thoughtworks.org/browse/CC-363
> http://confluence.public.thoughtworks.org/display/CC/Home
>
>
> - Original Message -
> From: "Alexandre Poitras" <[EMAIL PROTECTED]>
> To: "Maven Users List" 
> Sent: Thursday, May 04, 2006 3:52 AM
> Subject: Re: [m2] Continuum or CruiseControl as a CI server ?
>
>
> Well Continuum does the job for me, never thought about switching.
> What I like about continuum is that you can customize the goals
> invoked during a build (for instance, clean site:deploy deploy).  I
> have never used cruise control but I heard it's hard to configure.
>
> On 5/3/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:
> > I'm trying to find the best CI tool for a brand new Maven2-built project
> > and
> > I'd like to have your experience feedback about which one to choose
> > between
> > Continuum and CruiseControl.
> > I know that, as Continuum is a spin-off of Maven project it should be
> > better
> > integrated with it. But on the other hand, CruiseControl seems more
> mature
> > to me, even if, to be honnest, I haven't tried any of them in a real
> > situation yet. That's why I need something more concrete. Is there any
> > Maven
> > 2 cruisecontrol plugin somewhere as there was one for Maven 1 ? What do
> > you
> > think ?
> >
> > --
> > Sébastien Arbogast
> >
> > The Epseelon Project : http://www.epseelon.net
> > Blog : http://sebastien-arbogast.epseelon.net
> > TagSpot : http://www.tagspot.org
> >
> >
>
> -
> 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]
>
>


--
Sébastien Arbogast

The Epseelon Project : http://www.epseelon.net
Blog : http://sebastien-arbogast.epseelon.net
TagSpot : http://www.tagspot.org




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



Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Sebastien Arbogast

Honestly, intuitively I have a small preference for CruiseControl. The only
thing that bothers me is the redundancy of information between the POM and
CC configuration file. So if there was a Maven2 plugin to generate the
latter from the former, as there was one for Maven1, that would be great.

2006/5/4, Kieran Brady <[EMAIL PROTECTED]>:


We're using the latest CruiseControl with Maven 2 successfully - no
problem
configuring it. At the time I neeeded to implement a CI system back in
October, Continuum wasn't mature enough and I couldn't realistically put
it
forward as an option as I couldn't get it to work :) I haven't tried
Continuum since as CruiseControl has been happily doing multi-module
builds,
single projects, profiled builds, nightly builds running all reports, on
demand builds and so on and so I've no reason to migrate.

A couple of links:

http://cruisecontrol.sourceforge.net/main/configxml.html
http://jira.public.thoughtworks.org/browse/CC-363
http://confluence.public.thoughtworks.org/display/CC/Home


- Original Message -
From: "Alexandre Poitras" <[EMAIL PROTECTED]>
To: "Maven Users List" 
Sent: Thursday, May 04, 2006 3:52 AM
Subject: Re: [m2] Continuum or CruiseControl as a CI server ?


Well Continuum does the job for me, never thought about switching.
What I like about continuum is that you can customize the goals
invoked during a build (for instance, clean site:deploy deploy).  I
have never used cruise control but I heard it's hard to configure.

On 5/3/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:
> I'm trying to find the best CI tool for a brand new Maven2-built project
> and
> I'd like to have your experience feedback about which one to choose
> between
> Continuum and CruiseControl.
> I know that, as Continuum is a spin-off of Maven project it should be
> better
> integrated with it. But on the other hand, CruiseControl seems more
mature
> to me, even if, to be honnest, I haven't tried any of them in a real
> situation yet. That's why I need something more concrete. Is there any
> Maven
> 2 cruisecontrol plugin somewhere as there was one for Maven 1 ? What do
> you
> think ?
>
> --
> Sébastien Arbogast
>
> The Epseelon Project : http://www.epseelon.net
> Blog : http://sebastien-arbogast.epseelon.net
> TagSpot : http://www.tagspot.org
>
>

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





--
Sébastien Arbogast

The Epseelon Project : http://www.epseelon.net
Blog : http://sebastien-arbogast.epseelon.net
TagSpot : http://www.tagspot.org


Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Kieran Brady
We're using the latest CruiseControl with Maven 2 successfully - no problem 
configuring it. At the time I neeeded to implement a CI system back in 
October, Continuum wasn't mature enough and I couldn't realistically put it 
forward as an option as I couldn't get it to work :) I haven't tried 
Continuum since as CruiseControl has been happily doing multi-module builds, 
single projects, profiled builds, nightly builds running all reports, on 
demand builds and so on and so I've no reason to migrate.


A couple of links:

http://cruisecontrol.sourceforge.net/main/configxml.html
http://jira.public.thoughtworks.org/browse/CC-363
http://confluence.public.thoughtworks.org/display/CC/Home


- Original Message - 
From: "Alexandre Poitras" <[EMAIL PROTECTED]>

To: "Maven Users List" 
Sent: Thursday, May 04, 2006 3:52 AM
Subject: Re: [m2] Continuum or CruiseControl as a CI server ?


Well Continuum does the job for me, never thought about switching.
What I like about continuum is that you can customize the goals
invoked during a build (for instance, clean site:deploy deploy).  I
have never used cruise control but I heard it's hard to configure.

On 5/3/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:
I'm trying to find the best CI tool for a brand new Maven2-built project 
and
I'd like to have your experience feedback about which one to choose 
between

Continuum and CruiseControl.
I know that, as Continuum is a spin-off of Maven project it should be 
better

integrated with it. But on the other hand, CruiseControl seems more mature
to me, even if, to be honnest, I haven't tried any of them in a real
situation yet. That's why I need something more concrete. Is there any 
Maven
2 cruisecontrol plugin somewhere as there was one for Maven 1 ? What do 
you

think ?

--
Sébastien Arbogast

The Epseelon Project : http://www.epseelon.net
Blog : http://sebastien-arbogast.epseelon.net
TagSpot : http://www.tagspot.org




-
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: [m2] Continuum or CruiseControl as a CI server ?

2006-05-03 Thread Alexandre Poitras

Well Continuum does the job for me, never thought about switching.
What I like about continuum is that you can customize the goals
invoked during a build (for instance, clean site:deploy deploy).  I
have never used cruise control but I heard it's hard to configure.

On 5/3/06, Sebastien Arbogast <[EMAIL PROTECTED]> wrote:

I'm trying to find the best CI tool for a brand new Maven2-built project and
I'd like to have your experience feedback about which one to choose between
Continuum and CruiseControl.
I know that, as Continuum is a spin-off of Maven project it should be better
integrated with it. But on the other hand, CruiseControl seems more mature
to me, even if, to be honnest, I haven't tried any of them in a real
situation yet. That's why I need something more concrete. Is there any Maven
2 cruisecontrol plugin somewhere as there was one for Maven 1 ? What do you
think ?

--
Sébastien Arbogast

The Epseelon Project : http://www.epseelon.net
Blog : http://sebastien-arbogast.epseelon.net
TagSpot : http://www.tagspot.org




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



[m2] Continuum or CruiseControl as a CI server ?

2006-05-03 Thread Sebastien Arbogast

I'm trying to find the best CI tool for a brand new Maven2-built project and
I'd like to have your experience feedback about which one to choose between
Continuum and CruiseControl.
I know that, as Continuum is a spin-off of Maven project it should be better
integrated with it. But on the other hand, CruiseControl seems more mature
to me, even if, to be honnest, I haven't tried any of them in a real
situation yet. That's why I need something more concrete. Is there any Maven
2 cruisecontrol plugin somewhere as there was one for Maven 1 ? What do you
think ?

--
Sébastien Arbogast

The Epseelon Project : http://www.epseelon.net
Blog : http://sebastien-arbogast.epseelon.net
TagSpot : http://www.tagspot.org


[m2] maven2, CruiseControl 2.4.1 and bests practices

2006-03-29 Thread COUVREUR jacques
Hello,


We have been working with Maven and CruiseControl for several years.

We are testing m2 and CruiseControl 2.4.1. In the config.xml
(CruiseControl's configuration file) we are using the 'maven2' element
and its 'goal' attribute with the following value: 
'clean scm:update | package site tomcat:undeploy tomcat:deploy'


As we are having problems with tomcat's plugin we often
modify/add/delete/etc... this goals sequence. However, the sources of
this project have a remote access as they are in a Subversion
repository, but the config.xml has no remote access. So a config.xml
modification needs time.
Moreover, I am not satisfied satisfy that the knowledge of how to build
a project is out of the project itself.


With maven 1, we would use an "integration-maven-goal" in the
CruiseControl's config.xml (re)defined as we want in the maven.xml of
the project.


What is the best practice for solving this problem in maven2?

Thanks a lot!


Jacques




--
Ce message est protege par les regles relatives au secret des correspondances ; 
il peut en outre contenir des informations a caractere confidentiel ou 
protegees par differentes regles et notamment le secret des affaires ; il est 
etabli a destination exclusive de son destinataire. Toute divulgation, 
utilisation, diffusion ou reproduction (totale ou partielle) de ce message, ou 
des informations qu'il contient, doit etre prealablement autorisee. 
Tout message electronique est susceptible d'alteration et son integrite ne peut 
etre assuree. Les AGF declinent toute responsabilite au titre de ce message 
s'il a ete modifie ou falsifie. 
Si vous n'etes pas destinataire de ce message, merci de le detruire 
immediatement et d'avertir l'expediteur de l'erreur de distribution et de la 
destruction du message.
This message is protected by the secrecy of correspondence rules ; furthermore 
it may contain privileged or confidential information that is protected by law, 
notably by the secrecy of business relations rule ; it is intended solely for 
the attention of   the addressee . Any disclosure, use, dissemination or 
reproduction (either whole or  partial) of this message or the information 
contained herein is strictly prohibited without prior consent.
Any electronic message  is susceptible to alteration  and  its integrity can 
not be assured.  AGF declines any  responsibility for  this message in the 
event of  alteration  or falsification..
If you are not the intended  recipient, please destroy it immediately and  
notify the sender of the wrong delivery and the mail deletion. 
--


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



Re: [m2] anyone is doing m2 with cruisecontrol?

2005-12-31 Thread Daniel Kulp


> so, I think I have only one choice , thinking to integrate m2 with
> cruise control now

For our project, we gave up on continuum.   It didn't fit our needs very 
well at all.  Thus, we're back to cruisecontrol.   What we did is create 
a simple ant build.xml file to call maven.














Seems to work quite well.   In the cruisecontrol config file, I have it 
merge all the surefire-reports dirs into the log and use the artifacts 
publisher to copy the build.out file generated above and a bunch of other 
things to the log dir.   It works quite well and provides much better 
reporting for what we need.

> btw, what is the different between cruise control and Continuum in
> terms of features?

There are three major things that cruisecontrol does that we rely on:
1) Reporting - we want the test reports available directly from 
cruisecontrol.  If something fails, it's easy to see what failed.   Also, 
since cruisecontrol reporting is XSL driven, we've added other XML files 
into the the merged log and added more stuff to the xsl scripts to report 
other things.

2) Split servlet/builds - with continuum, the actual build and the build 
servlet are on the same machine/same process.  This doesn't suit our 
needs.   We have one "uber reporting machine" that contains the build 
reporting for all the builds in the company, no matter what machine they 
are building on.   Developers don't need to know where the builds are, 
just where the reporting is.   Cruisecontrol supports this very well.

3) Email results - I couldn't get continuum to reliably send email, even 
on every successful build.  We have a rule about waiting until the 
cruisecontrol "pass" notice before you leave your desk after a merge.  
Continuum didn't seem to ever send the mail.   Not sure why.   I tried 
the IRC notifier, but it didn't seem to work with either of our two IRC 
servers.   We never saw anything in the IRC channels.  I haven't had a 
chance to try and figure out why.

Enjoy!
-- 
J. Daniel Kulp
Principal Engineer
IONA
P: 781-902-8727  C: 508-380-7194
[EMAIL PROTECTED]

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



[m2] anyone is doing m2 with cruisecontrol?

2005-12-30 Thread Man-Chi Leung

in my case, I tried to download continuum on my MacOSX and Solaris.
very sadly, Continuum did not even start it up, without any error  
message!!!


so, I think I have only one choice , thinking to integrate m2 with  
cruise control now


anyone has a success story?

btw, what is the different between cruise control and Continuum in  
terms of features?


Regards,
manchi




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



Re: Maven cruisecontrol plugin

2005-11-16 Thread Jamie Bisotti
On 11/16/05, duke <[EMAIL PROTECTED]> wrote:
>
> Hi all,
>
> I currently work on a java project with maven and his plugin
> cruisecontrol.
>
> The mail sended is measuring 2Mo, I would like to receive less heavy
> malls.
>
> However, I do not find cruisecontrol properties which enable me to
> simplify
> to the maximum the mail.
> A mail of the kind "ok" or "ko" would be enough for me.
>
> Thank you for your assistance
>
>
You'll probably have better luck on the CruiseControl mailing list.

--
Jamie Bisotti


Maven cruisecontrol plugin

2005-11-16 Thread duke
Hi all,

I currently work on a java project with maven and his plugin cruisecontrol.

The mail sended is measuring 2Mo, I would like to receive less heavy malls.

However, I do not find cruisecontrol properties which enable me to simplify
to the maximum the mail.
A mail of the kind "ok" or "ko" would be enough for me.

Thank you for your assistance


RE: [m-1.1b2] cruisecontrol plugin exception "

2005-11-05 Thread Arnaud HERITIER
I didn't used it with CC 2.3.1.
Can you open an issue please ...
http://jira.codehaus.org/browse/MPCRUISECONTROL
Arnaud
 

> -Message d'origine-
> De : Antonyan, Tigran(GE Infrastructure) 
> [mailto:[EMAIL PROTECTED] 
> Envoyé : vendredi 4 novembre 2005 21:19
> À : Maven Users List
> Objet : [m-1.1b2] cruisecontrol plugin exception "
> 
> Hi all,
> 
> I've install cruisecontrol 2.3.1 and maven-cruisecontrol-plugin 1.7,
> 
> Now, when I try to run "maven cruisecontrol:run" from command 
> line, I get an exception, also I get the same exception if I 
> just run "java -jar cruisecontrol.jar" from D:/Program 
> Files/cruisecontrol-2.3.1/main/dist 
> 
> here is the output:
> 
> 
> cruisecontrol:run:
> [java] [cc]Nov-04 15:01:50 Main  - CruiseControl 
> Version 2.3.1 Compiled on October 10 2005 0917
> [java] Exception in thread "main" 
> java.lang.NoClassDefFoundError: com/twmacinta/util/MD5OutputStream
> [java]  at 
> net.sourceforge.cruisecontrol.Main.main(Main.java:76)
> [java]  at CruiseControl.main(CruiseControl.java:57)
> [java] [ERROR] Java Result: 1
> BUILD SUCCESSFUL
> 
> Any help will be greatly appreciated !
> 
> Thank you in advance.
> 
> P.S. I'm running version 1.1-beta-2
> 
> -
> 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]



[m-1.1b2] cruisecontrol plugin exception "

2005-11-04 Thread Antonyan, Tigran\(GE Infrastructure\)
Hi all,

I've install cruisecontrol 2.3.1 and maven-cruisecontrol-plugin 1.7,

Now, when I try to run "maven cruisecontrol:run" from command line, I get an 
exception, also I get the same exception if I just run "java -jar 
cruisecontrol.jar" from D:/Program Files/cruisecontrol-2.3.1/main/dist 

here is the output:


cruisecontrol:run:
[java] [cc]Nov-04 15:01:50 Main  - CruiseControl Version 2.3.1 
Compiled on October 10 2005 0917
[java] Exception in thread "main" java.lang.NoClassDefFoundError: 
com/twmacinta/util/MD5OutputStream
[java]  at net.sourceforge.cruisecontrol.Main.main(Main.java:76)
[java]  at CruiseControl.main(CruiseControl.java:57)
[java] [ERROR] Java Result: 1
BUILD SUCCESSFUL

Any help will be greatly appreciated !

Thank you in advance.

P.S. I'm running version 1.1-beta-2

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



Re: Does CruiseControl support M2?

2005-10-28 Thread Emmanuel Venisse
I don't think but continuum does.

Emmanuel

Hong Xing a écrit :
> Does CruiseControl support M2?


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



Does CruiseControl support M2?

2005-10-28 Thread Hong Xing
Does CruiseControl support M2?


cruisecontrol : NoClassDefFoundError

2005-10-11 Thread Henrard Frédéric
Hi,
I receive the following error message when I run maven cruisecontrol:run goal.

cruisecontrol:run:
[java] [cc]Oct-11 14:09:05 Main  - CruiseControl Version 2.3.1 
Compiled on October 10 2005 0917
[java] Exception in thread "main" java.lang.NoClassDefFoundError: 
com/twmacinta/util/MD5OutputStream
[java]  at net.sourceforge.cruisecontrol.Main.main(Main.java:76)
[java]  at CruiseControl.main(CruiseControl.java:57)
[java] [ERROR] Java Result: 1


Cruisecontrol plugin version is 1.7 and cruisecontrol version is 2.3.1



I added fast-md5 as dependency in my project.xml file but the problem still 
always there.

Does somebody already work  with this configuration  ?


Thanks in advance,

Frédéric

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



Re: Maven 2.0 Cruisecontrol plugin?

2005-10-05 Thread Eric Biesterfeld
According to the plugin matrix
(http://docs.codehaus.org/display/MAVEN/Maven+Plugin+Matrix) it hasn't
been updated yet, and is listed as low priority. We're going to need
it ourselves, so I may just take the time to get some basic
functionality.

On 10/4/05, Frank Zhao <[EMAIL PROTECTED]> wrote:
>
> We are considering upgrading to Maven 2.0. Can someone tell me whether the 
> current Maven Cruisecontrol plugin v1.7 supprt Maven 2.0 or not?
>
> Another question, is there a document showing how to convert Maven 1.0's 
> maven.xml and project.properties files to the pom.xml for Maven 2.0?
>
> Thanks in advance,
>
> Frank
>
>

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



Maven 2.0 Cruisecontrol plugin?

2005-10-04 Thread Frank Zhao

We are considering upgrading to Maven 2.0. Can someone tell me whether the 
current Maven Cruisecontrol plugin v1.7 supprt Maven 2.0 or not?

Another question, is there a document showing how to convert Maven 1.0's 
maven.xml and project.properties files to the pom.xml for Maven 2.0?

Thanks in advance,

Frank


RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-29 Thread David Jackman
The problem is not that there aren't quotes around the CC properties,
but that there isn't an '=' character between the property name and the
value.  The source for CC I'm looking at seems to be doing it right (and
CC certainly works with Maven for me here), so I'm not sure why this
would be happening.  What version of CC are you using and what platform
are you running it on?

..David..
 

-Original Message-
From: Mick Knutson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 28, 2005 5:10 PM
To: users@maven.apache.org
Subject: RE: RE : CruiseControl issues trying to install and run from
maven.Pleasehelp.

Revisiting this again, I am having issues getting cruiseControl to
correctly call Maven.
This is what I get in the MAVEN_BATCH_ECHO=on:


C:\opt\local\blackhawk\FastForward_AppServer\fastforward>"c:\j2sdk1.4.2_
08\bin\java.exe"
-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.Docume
ntBuilderFactoryImpl
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFac
toryImpl
"-Dmaven.home=C:\Maven_1.0.2"
"-Dtools.jar=c:\j2sdk1.4.2_08\lib\tools.jar"
"-Dforehead.conf.file=C:\Maven_1.0.2\bin\forehead.conf"
-Djava.endorsed.dirs="c:\j2sdk1.4.2_08\lib\endorsed;C:\Maven_1.0.2\lib\e
ndorsed"
-Xmx1024m -classpath "C:\Maven_1.0.2\lib\forehead-1.0-beta-5.jar"
"com.werken.forehead.Forehead" -Dcclastbuildtimestamp 2005092100
-Dlabel build.1 -Dcclastgoodbuildtimestamp 2005092100
-Dlastbuildsuccessful false "-Dcvstimestamp=2005-09-28 22:52:04 GMT"
-Dcctimestamp 20050928155204 -b -p project.xml scm:update-project

BUILD FAILED
Goal "2005092100" does not exist in this project.
Total time: 4 seconds
Finished at: Wed Sep 28 15:52:13 PDT 2005

When I careate a new batch file that calles maven like this:
maven_cc.bat:
=
call %maven_BIN%\maven.bat


I get this:

C:\opt\local\blackhawk\FastForward_AppServer\fastforward>"c:\j2sdk1.4.2_
08\bin\java.exe"
-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.Docume
ntBuilderFactoryImpl
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFac
toryImpl
"-Dmaven.home=C:\Maven_1.0.2"
"-Dtools.jar=c:\j2sdk1.4.2_08\lib\tools.jar"
"-Dforehead.conf.file=C:\Maven_1.0.2\bin\forehead.conf"
-Djava.endorsed.dirs="c:\j2sdk1.4.2_08\lib\endorsed;C:\Maven_1.0.2\lib\e
ndorsed"
-Xmx1024m -classpath "C:\Maven_1.0.2\lib\forehead-1.0-beta-5.jar"
"com.werken.forehead.Forehead"

then Maven runs the default goal for my project, but nothing else.



-
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: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-28 Thread Mick Knutson

OK, it seems that only cvstimestamp parameter is getting quoted correctly.
How did this happen? How can I maek the cclastbuildtimestamp, label, 
cclastgoodbuildtimestamp , cclastbuildsuccessful and cctimestamp parameters 
quoted?




Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)





From: "Mick Knutson" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" 
To: users@maven.apache.org
Subject: RE: RE : CruiseControl issues trying to install and run from 
maven.Pleasehelp.

Date: Wed, 28 Sep 2005 16:09:55 -0700

Revisiting this again, I am having issues getting cruiseControl to 
correctly call Maven.

This is what I get in the MAVEN_BATCH_ECHO=on:


C:\opt\local\blackhawk\FastForward_AppServer\fastforward>"c:\j2sdk1.4.2_08\bin\java.exe"
-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl
"-Dmaven.home=C:\Maven_1.0.2"
"-Dtools.jar=c:\j2sdk1.4.2_08\lib\tools.jar"
"-Dforehead.conf.file=C:\Maven_1.0.2\bin\forehead.conf"
-Djava.endorsed.dirs="c:\j2sdk1.4.2_08\lib\endorsed;C:\Maven_1.0.2\lib\endorsed"
-Xmx1024m -classpath "C:\Maven_1.0.2\lib\forehead-1.0-beta-5.jar"
"com.werken.forehead.Forehead" -Dcclastbuildtimestamp 2005092100
-Dlabel build.1 -Dcclastgoodbuildtimestamp 2005092100
-Dlastbuildsuccessful false "-Dcvstimestamp=2005-09-28 22:52:04 GMT"
-Dcctimestamp 20050928155204 -b -p project.xml scm:update-project

BUILD FAILED
Goal "2005092100" does not exist in this project.
Total time: 4 seconds
Finished at: Wed Sep 28 15:52:13 PDT 2005

When I careate a new batch file that calles maven like this:
maven_cc.bat:
=
call %maven_BIN%\maven.bat


I get this:

C:\opt\local\blackhawk\FastForward_AppServer\fastforward>"c:\j2sdk1.4.2_08\bin\java.exe"
-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl
"-Dmaven.home=C:\Maven_1.0.2"
"-Dtools.jar=c:\j2sdk1.4.2_08\lib\tools.jar"
"-Dforehead.conf.file=C:\Maven_1.0.2\bin\forehead.conf"
-Djava.endorsed.dirs="c:\j2sdk1.4.2_08\lib\endorsed;C:\Maven_1.0.2\lib\endorsed"
-Xmx1024m -classpath "C:\Maven_1.0.2\lib\forehead-1.0-beta-5.jar"
"com.werken.forehead.Forehead"

then Maven runs the default goal for my project, but nothing else.



-
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: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-28 Thread Mick Knutson
Revisiting this again, I am having issues getting cruiseControl to correctly 
call Maven.

This is what I get in the MAVEN_BATCH_ECHO=on:


C:\opt\local\blackhawk\FastForward_AppServer\fastforward>"c:\j2sdk1.4.2_08\bin\java.exe"
-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl
"-Dmaven.home=C:\Maven_1.0.2"
"-Dtools.jar=c:\j2sdk1.4.2_08\lib\tools.jar"
"-Dforehead.conf.file=C:\Maven_1.0.2\bin\forehead.conf"
-Djava.endorsed.dirs="c:\j2sdk1.4.2_08\lib\endorsed;C:\Maven_1.0.2\lib\endorsed"
-Xmx1024m -classpath "C:\Maven_1.0.2\lib\forehead-1.0-beta-5.jar"
"com.werken.forehead.Forehead" -Dcclastbuildtimestamp 2005092100
-Dlabel build.1 -Dcclastgoodbuildtimestamp 2005092100
-Dlastbuildsuccessful false "-Dcvstimestamp=2005-09-28 22:52:04 GMT"
-Dcctimestamp 20050928155204 -b -p project.xml scm:update-project

BUILD FAILED
Goal "2005092100" does not exist in this project.
Total time: 4 seconds
Finished at: Wed Sep 28 15:52:13 PDT 2005

When I careate a new batch file that calles maven like this:
maven_cc.bat:
=
call %maven_BIN%\maven.bat


I get this:

C:\opt\local\blackhawk\FastForward_AppServer\fastforward>"c:\j2sdk1.4.2_08\bin\java.exe"
-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl
"-Dmaven.home=C:\Maven_1.0.2"
"-Dtools.jar=c:\j2sdk1.4.2_08\lib\tools.jar"
"-Dforehead.conf.file=C:\Maven_1.0.2\bin\forehead.conf"
-Djava.endorsed.dirs="c:\j2sdk1.4.2_08\lib\endorsed;C:\Maven_1.0.2\lib\endorsed"
-Xmx1024m -classpath "C:\Maven_1.0.2\lib\forehead-1.0-beta-5.jar"
"com.werken.forehead.Forehead"

then Maven runs the default goal for my project, but nothing else.



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



RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-26 Thread Mick Knutson
I don't understand this, but all I did was create a batch file that called 
the original maven.bat, and used that in my config.xml, and it started 
working.


Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)





From: "David Jackman" <[EMAIL PROTECTED]>
To: "Mick Knutson" <[EMAIL PROTECTED]>
Subject: RE: RE : CruiseControl issues trying to install and run from 
maven.Pleasehelp.

Date: Mon, 26 Sep 2005 13:35:20 -0600

No idea on that one.  I've never used log4j.xml


-Original Message-
From: Mick Knutson [mailto:[EMAIL PROTECTED]
Sent: Monday, September 26, 2005 1:33 PM
To: David Jackman
Subject: RE: RE : CruiseControl issues trying to install and run from
maven.Pleasehelp.

where do I put the logger XML properties if I am using log4j.xml for
cruiseControl?


Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)




>From: "David Jackman" <[EMAIL PROTECTED]>
>To: "Mick Knutson" <[EMAIL PROTECTED]>
>Subject: RE: RE : CruiseControl issues trying to install and run from
>maven.Pleasehelp.
>Date: Mon, 26 Sep 2005 12:28:27 -0600
>
>1. CC uses Log4j, so your log4j.properties file can indicate the
logging
>level.  My log4j.properties looks like this:
>log4j.rootCategory=INFO,FILE,HUB
>
># Log errors to the console (for the CruiseControl service, the
>console output is sent to service_out.log and service_err.log)
>log4j.appender.Console=org.apache.log4j.ConsoleAppender
>log4j.appender.Console.Threshold=ERROR
>log4j.appender.Console.layout=org.apache.log4j.PatternLayout
>log4j.appender.Console.layout.ConversionPattern=[cc]%d{MMM-dd
>HH:mm:ss} %-14.14c{1}- %m%n
>
># FILE is file logger with rotation
>log4j.appender.FILE=org.apache.log4j.RollingFileAppender
>log4j.appender.FILE.Threshold=INFO
>log4j.appender.FILE.layout=org.apache.log4j.PatternLayout
>log4j.appender.FILE.layout.ConversionPattern=%d [%-9t] %-5p
>%-16c{1} %x- %m%n
>log4j.appender.FILE.File=cruisecontrol.log
>log4j.appender.FILE.MaxFileSize=5000KB
>log4j.appender.FILE.MaxBackupIndex=4
>
># HUB is a socket hub appender
>log4j.appender.HUB=org.apache.log4j.net.SocketHubAppender
>log4j.appender.HUB.Threshold=DEBUG
>log4j.appender.HUB.layout=org.apache.log4j.PatternLayout
>log4j.appender.HUB.layout.ConversionPattern=[cc]%d{MMM-dd
>HH:mm:ss} %-14.14c{1}- %m%n
>log4j.appender.HUB.port=4445
>
>Change the log4j.appender.*.Threshold to DEBUG to get debug logging.
>Yours doesn't have to have 3 separate appenders.  The Console one is
>enough to see what's going on when it happens.
>
>2. Yes.  Create a Maven.bat file that looks something like this:
>echo "C:\Maven_1.0.2\bin\maven.bat" %*
>call "C:\Maven_1.0.2\bin\maven.bat" %*
>Then change the mavenscript attribute in your config.xml to point to
the
>new Maven.bat instead.
>
>Hope this helps
>..David..
>
>
>-Original Message-
>From: Mick Knutson [mailto:[EMAIL PROTECTED]
>Sent: Monday, September 26, 2005 12:04 PM
>To: David Jackman
>Subject: RE: RE : CruiseControl issues trying to install and run from
>maven.Pleasehelp.
>
>This seems to be only for running Maven by itself.
>
>1. How do I change the log level of CC?
>2. Can I turn on maven debug in a BAT files similiar to what you just
>gave, but running through CC?
>
>
>Thank You
>Mick Knutson
>
>Sr. Java/J2EE Consultant
>BASE logic, inc.
>(415) 648-1804 (S.F., CA)
>http://www.BASELogic.com
>
>HP Consulting Services (Walnut Creek, CA)
>
>
>
>
> >From: "David Jackman" <[EMAIL PROTECTED]>
> >To: <[EMAIL PROTECTED]>
> >Subject: RE: RE : CruiseControl issues trying to install and run from
> >maven.Pleasehelp.
> >Date: Fri, 23 Sep 2005 08:29:34 -0600
> >
> >  Well, I can't see anything here that jumps out, either.  What I
>really
> >want to look at now is the command line CC uses to start maven.  I
> >thought it would be in the log, but I guess not.  I created my own
>Maven
> >script that looks like this:
> >   @echo off
> >   echo "C:\Maven_1.0.2\bin\maven.bat" %*
> >   call "C:\Maven_1.0.2\bin\maven.bat" %*
> >so the command line will be sent to stdout.  You will also get a copy
>of
> >the command line in the log if you up the logging level to debug
>instead
> >of info (you'll get a load of other stuff, too, which may be helpful
> >here).
>

RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-23 Thread David Jackman
I'm going to move this off-list, as the emails are getting lengthy.  If
you've been following this, let me know and I'll copy you on my
responses.

..David..


-Original Message-
From: Mick Knutson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 22, 2005 4:23 PM
To: users@maven.apache.org
Subject: RE: RE : CruiseControl issues trying to install and run from
maven.Pleasehelp.

I guess all I can do more, is show you my appliction.xml and the cc
logs:

application.xml header:

 http://www.w3.org/2001/XMLSchema-instance";
xsi:noNamespaceSchemaLocation="/Maven_1.0.2/maven-project.xsd">

3
fastforward
ff
Fastforward
1.1.12







Safeway
http://www.safeway.com

http://shop.safeway.com/brands/swy/superstore/p/images/logo_life.g
if??R12005

2005
com.*

http://shop.safeway.com/brands/swy/superstore/p/images/logo_life.g
if??R12005
Fastforward, the way to pay
short
Fastforward, the way to pay LONG
http://www.safeway.com

localhost
C:\Program Files\Apache
Group\Apache2\htdocs\fastforward




scm:cvs:pserver:[EMAIL PROTECTED]:/usr/local/cvsroot:Fa
stForward_AppServer






Mick Knutson
mknut01
[EMAIL PROTECTED]
BASE logic, Inc.

Java Architect
Java Designer
Java Developer
    




.



cruisecontrol logs:
===
2005-09-22 15:14:19,966 [main ] INFO Main - CruiseControl Version
2.3.0.1
2005-09-22 15:14:20,325 [main ] INFO CruiseControlController -
projectName = [Fastforward]
2005-09-22 15:14:20,372 [main ] INFO Project - Project Fastforward:
reading settings from config file
[C:\opt\local\blackhawk\FastForward_AppServer\fastforward\config.xml]
2005-09-22 15:14:20,403 [main ] WARN CurrentBuildStatusBootstrapper -
CurrentBuildStatusBootstrapper was obsoleted by
CurrentBuildStatusListener
2005-09-22 15:14:20,450 [main ] WARN CurrentBuildStatusPublisher -
CurrentBuildStatusPublisher was obsoleted by CurrentBuildStatusListener
2005-09-22 15:14:20,512 [main ] INFO Project - Project Fastforward
starting
2005-09-22 15:14:20,512 [Project Fastforward thread] INFO Project -
Project Fastforward started
2005-09-22 15:14:20,512 [main ] INFO Project - Project Fastforward: idle
2005-09-22 15:14:20,512 [Project Fastforward thread] INFO Project -
Project
Fastforward: next build in 10 seconds
2005-09-22 15:14:20,512 [Project Fastforward thread] INFO Project -
Project
Fastforward: waiting for next time to build
2005-09-22 15:14:20,528 [BuildQueueThread] INFO BuildQueue - BuildQueue
started
2005-09-22 15:14:30,512 [Project Fastforward thread] INFO Project -
Project
Fastforward: in build queue
2005-09-22 15:14:30,512 [BuildQueueThread] INFO BuildQueue - now adding
to the thread queue: Fastforward
2005-09-22 15:14:30,622 [Thread-1 ] INFO Project - Project Fastforward: 
reading settings from config file
[C:\opt\local\blackhawk\FastForward_AppServer\fastforward\config.xml]
2005-09-22 15:14:30,622 [Thread-1 ] WARN CurrentBuildStatusBootstrapper
- CurrentBuildStatusBootstrapper was obsoleted by
CurrentBuildStatusListener
2005-09-22 15:14:30,622 [Thread-1 ] WARN CurrentBuildStatusPublisher -
CurrentBuildStatusPublisher was obsoleted by CurrentBuildStatusListener
2005-09-22 15:14:30,622 [Thread-1 ] INFO Project - Project Fastforward: 
bootstrapping
2005-09-22 15:14:30,637 [Thread-1 ] INFO Project - Project Fastforward: 
checking for modifications
2005-09-22 15:14:36,919 [Thread-1 ] INFO ModificationSet - 13
modifications have been detected.
2005-09-22 15:14:36,934 [Thread-1 ] INFO Project - Project Fastforward:
now building
2005-09-22 15:14:41,669 [Thread-1 ] INFO Project - Project Fastforward: 
merging accumulated log files
2005-09-22 15:14:42,403 [Thread-1 ] INFO Project - Project Fastforward: 
build failed
2005-09-22 15:14:42,403 [Thread-1 ] INFO Project - Project Fastforward: 
publishing build results
2005-09-22 15:14:43,403 [Thread-1 ] INFO Project - Project Fastforward:
idle
2005-09-22 15:14:43,403 [Project Fastforward thread] INFO Project -
Project
Fastforward: next build in 10 seconds
2005-09-22 15:14:43,403 [Project Fastforward thread] INFO Project -
Project
Fastforward: waiting for next time to build


log20050922151430.xml:

 
  

  
1.19
project.xml
  
  09/22/2005 13:26:04
  mknut01
  
  1.19
  [EMAIL PROTECTED]


  
1.5
Constants.java
common-jar-subproject/src/java/com/baselogic
  
  09/22/2005 13:26:04
  mknut01
  
  1.5
  [EMAIL PROTECTED]


  
 

RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-22 Thread Mick Knutson

I guess all I can do more, is show you my appliction.xml and the cc logs:

application.xml header:


http://www.w3.org/2001/XMLSchema-instance";
   xsi:noNamespaceSchemaLocation="/Maven_1.0.2/maven-project.xsd">

   3
fastforward
ff
Fastforward
1.1.12



   
   


   
Safeway
http://www.safeway.com

http://shop.safeway.com/brands/swy/superstore/p/images/logo_life.gif??R12005
   
2005
com.*

http://shop.safeway.com/brands/swy/superstore/p/images/logo_life.gif??R12005
Fastforward, the way to pay short
   Fastforward, the way to pay LONG
http://www.safeway.com

localhost
	C:\Program Files\Apache 
Group\Apache2\htdocs\fastforward
   



	
scm:cvs:pserver:[EMAIL PROTECTED]:/usr/local/cvsroot:FastForward_AppServer

   



   
   
   Mick Knutson
   mknut01
   [EMAIL PROTECTED]
   BASE logic, Inc.
   
   Java Architect
   Java Designer
   Java Developer
   
   
   

   
.



cruisecontrol logs:
===
2005-09-22 15:14:19,966 [main ] INFO Main - CruiseControl Version 2.3.0.1
2005-09-22 15:14:20,325 [main ] INFO CruiseControlController - projectName = 
[Fastforward]
2005-09-22 15:14:20,372 [main ] INFO Project - Project Fastforward: reading 
settings from config file 
[C:\opt\local\blackhawk\FastForward_AppServer\fastforward\config.xml]
2005-09-22 15:14:20,403 [main ] WARN CurrentBuildStatusBootstrapper - 
CurrentBuildStatusBootstrapper was obsoleted by CurrentBuildStatusListener
2005-09-22 15:14:20,450 [main ] WARN CurrentBuildStatusPublisher - 
CurrentBuildStatusPublisher was obsoleted by CurrentBuildStatusListener

2005-09-22 15:14:20,512 [main ] INFO Project - Project Fastforward starting
2005-09-22 15:14:20,512 [Project Fastforward thread] INFO Project - Project 
Fastforward started

2005-09-22 15:14:20,512 [main ] INFO Project - Project Fastforward: idle
2005-09-22 15:14:20,512 [Project Fastforward thread] INFO Project - Project 
Fastforward: next build in 10 seconds
2005-09-22 15:14:20,512 [Project Fastforward thread] INFO Project - Project 
Fastforward: waiting for next time to build
2005-09-22 15:14:20,528 [BuildQueueThread] INFO BuildQueue - BuildQueue 
started
2005-09-22 15:14:30,512 [Project Fastforward thread] INFO Project - Project 
Fastforward: in build queue
2005-09-22 15:14:30,512 [BuildQueueThread] INFO BuildQueue - now adding to 
the thread queue: Fastforward
2005-09-22 15:14:30,622 [Thread-1 ] INFO Project - Project Fastforward: 
reading settings from config file 
[C:\opt\local\blackhawk\FastForward_AppServer\fastforward\config.xml]
2005-09-22 15:14:30,622 [Thread-1 ] WARN CurrentBuildStatusBootstrapper - 
CurrentBuildStatusBootstrapper was obsoleted by CurrentBuildStatusListener
2005-09-22 15:14:30,622 [Thread-1 ] WARN CurrentBuildStatusPublisher - 
CurrentBuildStatusPublisher was obsoleted by CurrentBuildStatusListener
2005-09-22 15:14:30,622 [Thread-1 ] INFO Project - Project Fastforward: 
bootstrapping
2005-09-22 15:14:30,637 [Thread-1 ] INFO Project - Project Fastforward: 
checking for modifications
2005-09-22 15:14:36,919 [Thread-1 ] INFO ModificationSet - 13 modifications 
have been detected.
2005-09-22 15:14:36,934 [Thread-1 ] INFO Project - Project Fastforward: now 
building
2005-09-22 15:14:41,669 [Thread-1 ] INFO Project - Project Fastforward: 
merging accumulated log files
2005-09-22 15:14:42,403 [Thread-1 ] INFO Project - Project Fastforward: 
build failed
2005-09-22 15:14:42,403 [Thread-1 ] INFO Project - Project Fastforward: 
publishing build results

2005-09-22 15:14:43,403 [Thread-1 ] INFO Project - Project Fastforward: idle
2005-09-22 15:14:43,403 [Project Fastforward thread] INFO Project - Project 
Fastforward: next build in 10 seconds
2005-09-22 15:14:43,403 [Project Fastforward thread] INFO Project - Project 
Fastforward: waiting for next time to build



log20050922151430.xml:



 
   
 
   1.19
   project.xml
 
 09/22/2005 13:26:04
 mknut01
 

 1.19
 [EMAIL PROTECTED]
   
   
 
   1.5
   Constants.java
   common-jar-subproject/src/java/com/baselogic
 
 09/22/2005 13:26:04
 mknut01
 

 1.5
 [EMAIL PROTECTED]
   
   
 
   1.24
   struts-config.xml
   ff-war-subproject/src/conf/web/xml
 
 09/22/2005 13:26:04
 mknut01
 

 1.24
 [EMAIL PROTECTED]
   
   
 
   1.23
   struts-config.xml
   ff-war-subproject/src/conf/web/xml
 
 09/21/2005 15:32:24
 tflin00
 

 1.23
 [EMAIL PROTECTED]
   
   
 
   1.14
   tiles-defs.xml
   ff-war-subproject/src/conf/web/xml
 
 0

RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-22 Thread David Jackman
Well, everything here looks okay.  Can you send more detail about the
error you're getting?  Does the stdout/stderr output from CC give any
other helpful information?  From what you're describing, it seems like
CC is passing the date as a parameter to the maven script, but I'm not
sure how that would happen (never seen it here).

..David..


-Original Message-
From: Mick Knutson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 22, 2005 11:28 AM
To: users@maven.apache.org
Subject: RE: RE : CruiseControl issues trying to install and run from
maven.Pleasehelp.




























http://165.19.234.147/fastforward";
spamwhilebroken="true" reportsuccess="always" skipusers="false"
returnaddress="[EMAIL PROTECTED]">













Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)




>From: "David Jackman" <[EMAIL PROTECTED]>
>Reply-To: "Maven Users List" 
>To: "Maven Users List" 
>Subject: RE: RE : CruiseControl issues trying to install and run from 
>maven.Pleasehelp.
>Date: Thu, 22 Sep 2005 07:55:42 -0600
>
>This looks like the date property is being sent through as the goal to 
>run when starting Maven.  What does your config.xml file look like?
>
>..David..
>
>
>-Original Message-----
>From: Mick Knutson [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, September 21, 2005 6:25 PM
>To: users@maven.apache.org
>Subject: RE: RE : CruiseControl issues trying to install and run from 
>maven.Pleasehelp.
>
>My issue is not checking out from cvs as that works just fine. It is 
>actually building the app.
>I keep getting a Goal 2005092100 does not exist in this project
>
>Ideas how to fix this to run the goals I selected in the goal="..."> setting?
>
>Thank You
>Mick Knutson
>
>Sr. Java/J2EE Consultant
>BASE logic, inc.
>(415) 648-1804 (S.F., CA)
>http://www.BASELogic.com
>
>HP Consulting Services (Walnut Creek, CA)
>
>
>
>
> >From: "Mick Knutson" <[EMAIL PROTECTED]>
> >Reply-To: "Maven Users List" 
> >To: users@maven.apache.org
> >Subject: RE: RE : CruiseControl issues trying to install and run from

> >maven.Pleasehelp.
> >Date: Wed, 21 Sep 2005 15:07:21 -0700
> >
> >So how do I get it to try to check out a new version, then rebuild 
> >each
>
> >time?
> >
> >Thank You
> >Mick Knutson
> >
> >Sr. Java/J2EE Consultant
> >BASE logic, inc.
> >(415) 648-1804 (S.F., CA)
> >http://www.BASELogic.com
> >
> >HP Consulting Services (Walnut Creek, CA)
> >
> >
> >
> >
> >>From: "David Jackman" <[EMAIL PROTECTED]>
> >>Reply-To: "Maven Users List" 
> >>To: "Maven Users List" 
> >>Subject: RE: RE : CruiseControl issues trying to install and run 
> >>from maven.Pleasehelp.
> >>Date: Wed, 21 Sep 2005 15:54:24 -0600
> >>
> >>CC uses the lastsuccessfulbuild property when looking for changes 
> >>since the last build (to determine if another build should start).
> >>The value is a date/time in MMDDhhmmss format.
> >>
> >>-Original Message-
> >>From: Mick Knutson [mailto:[EMAIL PROTECTED]
> >>Sent: Wednesday, September 21, 2005 3:12 PM
> >>To: users@maven.apache.org
> >>Subject: RE: RE : CruiseControl issues trying to install and run 
> >>from maven.Pleasehelp.
> >>
> >>OK, it seems that there are many values that where not correct, but 
> >>I have now got it to work and is going every hour for now.
> >>What is the lastsuccessfulbuild for? SNAPSHOTS?
> >>
> >>Here is my logs:
> >> 
> >>   
> >>   
> >> 
> >> 
> >> 
> >> 
> >> 
> >> 
> >> 
> >> 
> >>  >>value="C:\opt\local\blackhawk\FastForward_AppServer\fastforward\targ
> >>et
> >>\c
> >>ruisecontrol"
> >>/>
> >> 
> >>   
> >>   
> >> 
> >> 
> >> 
> >>
> >> 
> >>   
> >>
> &g

RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-22 Thread Mick Knutson




   
   
   

   
   
   
   
   


   
   
   
   
   
   
   
   
   
   
   
   

   

   http://165.19.234.147/fastforward";
spamwhilebroken="true" reportsuccess="always" skipusers="false"
returnaddress="[EMAIL PROTECTED]">
   
   
   
   
   
   
   
   
   
   



Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)





From: "David Jackman" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" 
To: "Maven Users List" 
Subject: RE: RE : CruiseControl issues trying to install and run from 
maven.Pleasehelp.

Date: Thu, 22 Sep 2005 07:55:42 -0600

This looks like the date property is being sent through as the goal to
run when starting Maven.  What does your config.xml file look like?

..David..


-Original Message-
From: Mick Knutson [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 21, 2005 6:25 PM
To: users@maven.apache.org
Subject: RE: RE : CruiseControl issues trying to install and run from
maven.Pleasehelp.

My issue is not checking out from cvs as that works just fine. It is
actually building the app.
I keep getting a Goal 2005092100 does not exist in this project

Ideas how to fix this to run the goals I selected in the  setting?

Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)




>From: "Mick Knutson" <[EMAIL PROTECTED]>
>Reply-To: "Maven Users List" 
>To: users@maven.apache.org
>Subject: RE: RE : CruiseControl issues trying to install and run from
>maven.Pleasehelp.
>Date: Wed, 21 Sep 2005 15:07:21 -0700
>
>So how do I get it to try to check out a new version, then rebuild each

>time?
>
>Thank You
>Mick Knutson
>
>Sr. Java/J2EE Consultant
>BASE logic, inc.
>(415) 648-1804 (S.F., CA)
>http://www.BASELogic.com
>
>HP Consulting Services (Walnut Creek, CA)
>
>
>
>
>>From: "David Jackman" <[EMAIL PROTECTED]>
>>Reply-To: "Maven Users List" 
>>To: "Maven Users List" 
>>Subject: RE: RE : CruiseControl issues trying to install and run from
>>maven.Pleasehelp.
>>Date: Wed, 21 Sep 2005 15:54:24 -0600
>>
>>CC uses the lastsuccessfulbuild property when looking for changes
>>since the last build (to determine if another build should start).
>>The value is a date/time in MMDDhhmmss format.
>>
>>-Original Message-
>>From: Mick Knutson [mailto:[EMAIL PROTECTED]
>>Sent: Wednesday, September 21, 2005 3:12 PM
>>To: users@maven.apache.org
>>Subject: RE: RE : CruiseControl issues trying to install and run from
>>maven.Pleasehelp.
>>
>>OK, it seems that there are many values that where not correct, but I
>>have now got it to work and is going every hour for now.
>>What is the lastsuccessfulbuild for? SNAPSHOTS?
>>
>>Here is my logs:
>> 
>>   
>>   
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> >value="C:\opt\local\blackhawk\FastForward_AppServer\fastforward\target
>>\c
>>ruisecontrol"
>>/>
>> 
>>   
>>   
>> 
>> 
>> 
>>
>> 
>>   
>>
>>
>>
>>
>>
>>Thank You
>>Mick Knutson
>>
>>Sr. Java/J2EE Consultant
>>BASE logic, inc.
>>(415) 648-1804 (S.F., CA)
>>http://www.BASELogic.com
>>
>>HP Consulting Services (Walnut Creek, CA)
>>
>>
>>
>>
>> >From: "Vincent Massol" <[EMAIL PROTECTED]>
>> >Reply-To: "Maven Users List" 
>> >To: "'Maven Users List'" 
>> >Subject: RE: RE : CruiseControl issues trying to install and run
>> >from maven.Pleasehelp.
>> >Date: Wed, 21 Sep 2005 22:47:15 +0200
>> >
>> >Hi Doug,
>> >
>> > > -Original Message-
>> > > From: Doug Douglass [mailto:[EMAIL PROTECTED]
>> > > Sent: mercredi 21 septembre 2005 22:44
>> > > To: Maven Users List
>> > > Subject: Re: RE : CruiseControl issues trying to install and run
>> > > from maven.Pleasehelp.
>> > >
>> > > Mick Knutson wrote:
>> > > > So, the config.xml is at least a starting point right?
>> > > > Wh

RE: Why CruiseControl plugin can't find Log4j?

2005-09-22 Thread Vov@ Sadovyy

I'm using Maven 1.1 beta 1
The same behaviour is observed at Win2000 and Linux systems.



From: "Vov@ Sadovyy" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" 
To: users@maven.apache.org
Subject: Why CruiseControl plugin can't find Log4j?
Date: Thu, 22 Sep 2005 18:02:54 +0300

Hi,

I'm trying to install CruiseControl task for my build system made with 
Maven but in some reasons goal cruisecontrol:run crashes with the following 
warning:


---Begin---
cruisecontrol:run:
   [java] Exception in thread "main" java.lang.NoClassDefFoundError: 
org/apache

/log4j/Logger
   [java]  at 
net.sourceforge.cruisecontrol.Main.(Main.java:58)

   [java]  at CruiseControl.main(CruiseControl.java:57)
   [java] [ERROR] Java Result: 1
---End---

log4j.jar is in classpath, in cruisecontrol path (CRUISE_PATH).
Does anybody knows the reason for such behaviour? Where it can be added to 
be visible for pluging?


Thanks,
V

_
Express yourself instantly with MSN Messenger! Download today it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/



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



_
Don't just search. Find. Check out the new MSN Search! 
http://search.msn.com/



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



Why CruiseControl plugin can't find Log4j?

2005-09-22 Thread Vov@ Sadovyy

Hi,

I'm trying to install CruiseControl task for my build system made with Maven 
but in some reasons goal cruisecontrol:run crashes with the following 
warning:


---Begin---
cruisecontrol:run:
   [java] Exception in thread "main" java.lang.NoClassDefFoundError: 
org/apache

/log4j/Logger
   [java]  at net.sourceforge.cruisecontrol.Main.(Main.java:58)
   [java]  at CruiseControl.main(CruiseControl.java:57)
   [java] [ERROR] Java Result: 1
---End---

log4j.jar is in classpath, in cruisecontrol path (CRUISE_PATH).
Does anybody knows the reason for such behaviour? Where it can be added to 
be visible for pluging?


Thanks,
V

_
Express yourself instantly with MSN Messenger! Download today it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/



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



RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-22 Thread David Jackman
This looks like the date property is being sent through as the goal to
run when starting Maven.  What does your config.xml file look like?

..David..


-Original Message-
From: Mick Knutson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 21, 2005 6:25 PM
To: users@maven.apache.org
Subject: RE: RE : CruiseControl issues trying to install and run from
maven.Pleasehelp.

My issue is not checking out from cvs as that works just fine. It is
actually building the app.
I keep getting a Goal 2005092100 does not exist in this project

Ideas how to fix this to run the goals I selected in the  setting?

Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)




>From: "Mick Knutson" <[EMAIL PROTECTED]>
>Reply-To: "Maven Users List" 
>To: users@maven.apache.org
>Subject: RE: RE : CruiseControl issues trying to install and run from 
>maven.Pleasehelp.
>Date: Wed, 21 Sep 2005 15:07:21 -0700
>
>So how do I get it to try to check out a new version, then rebuild each

>time?
>
>Thank You
>Mick Knutson
>
>Sr. Java/J2EE Consultant
>BASE logic, inc.
>(415) 648-1804 (S.F., CA)
>http://www.BASELogic.com
>
>HP Consulting Services (Walnut Creek, CA)
>
>
>
>
>>From: "David Jackman" <[EMAIL PROTECTED]>
>>Reply-To: "Maven Users List" 
>>To: "Maven Users List" 
>>Subject: RE: RE : CruiseControl issues trying to install and run from 
>>maven.Pleasehelp.
>>Date: Wed, 21 Sep 2005 15:54:24 -0600
>>
>>CC uses the lastsuccessfulbuild property when looking for changes 
>>since the last build (to determine if another build should start).  
>>The value is a date/time in MMDDhhmmss format.
>>
>>-Original Message-
>>From: Mick Knutson [mailto:[EMAIL PROTECTED]
>>Sent: Wednesday, September 21, 2005 3:12 PM
>>To: users@maven.apache.org
>>Subject: RE: RE : CruiseControl issues trying to install and run from 
>>maven.Pleasehelp.
>>
>>OK, it seems that there are many values that where not correct, but I 
>>have now got it to work and is going every hour for now.
>>What is the lastsuccessfulbuild for? SNAPSHOTS?
>>
>>Here is my logs:
>> 
>>   
>>   
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> >value="C:\opt\local\blackhawk\FastForward_AppServer\fastforward\target
>>\c
>>ruisecontrol"
>>/>
>> 
>>   
>>   
>> 
>> 
>> 
>>
>> 
>>   
>>
>>
>>
>>
>>
>>Thank You
>>Mick Knutson
>>
>>Sr. Java/J2EE Consultant
>>BASE logic, inc.
>>(415) 648-1804 (S.F., CA)
>>http://www.BASELogic.com
>>
>>HP Consulting Services (Walnut Creek, CA)
>>
>>
>>
>>
>> >From: "Vincent Massol" <[EMAIL PROTECTED]>
>> >Reply-To: "Maven Users List" 
>> >To: "'Maven Users List'" 
>> >Subject: RE: RE : CruiseControl issues trying to install and run 
>> >from maven.Pleasehelp.
>> >Date: Wed, 21 Sep 2005 22:47:15 +0200
>> >
>> >Hi Doug,
>> >
>> > > -Original Message-
>> > > From: Doug Douglass [mailto:[EMAIL PROTECTED]
>> > > Sent: mercredi 21 septembre 2005 22:44
>> > > To: Maven Users List
>> > > Subject: Re: RE : CruiseControl issues trying to install and run 
>> > > from maven.Pleasehelp.
>> > >
>> > > Mick Knutson wrote:
>> > > > So, the config.xml is at least a starting point right?
>> > > > What I need to know then, is:
>> > > >
>> > > > 1. What is missing to at least get an initial checkout and 
>> > > > build
>> >working
>> > > > 2. Where do I put the config.xml?
>> > > > 3. Do I just run c:\cc\main\bin\cruisecontrol.bat once to get 
>> > > > the
>> >whole
>> > > > thing into motion?
>> > > >
>> > > >
>> > > > Thank You
>> > > > Mick Knutson
>> > > >
>> > >
>> > > As I said, I pretty much follow the CC docs but I don't have a 
>> > > link handy. From what I recall, maven CC plugin wants to run CC 
>> > > _within_ the maven project, whereas CC itself usually runs 
>> > > _outside_ of any single project.
>> >
>> >That is not quite correct. The def

RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-21 Thread Mick Knutson
My issue is not checking out from cvs as that works just fine. It is 
actually building the app.

I keep getting a Goal 2005092100 does not exist in this project

Ideas how to fix this to run the goals I selected in the goal="..."> setting?


Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)





From: "Mick Knutson" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" 
To: users@maven.apache.org
Subject: RE: RE : CruiseControl issues trying to install and run from 
maven.Pleasehelp.

Date: Wed, 21 Sep 2005 15:07:21 -0700

So how do I get it to try to check out a new version, then rebuild each 
time?


Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)





From: "David Jackman" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" 
To: "Maven Users List" 
Subject: RE: RE : CruiseControl issues trying to install and run from 
maven.Pleasehelp.

Date: Wed, 21 Sep 2005 15:54:24 -0600

CC uses the lastsuccessfulbuild property when looking for changes since
the last build (to determine if another build should start).  The value
is a date/time in MMDDhhmmss format.

-Original Message-
From: Mick Knutson [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 21, 2005 3:12 PM
To: users@maven.apache.org
Subject: RE: RE : CruiseControl issues trying to install and run from
maven.Pleasehelp.

OK, it seems that there are many values that where not correct, but I
have now got it to work and is going every hour for now.
What is the lastsuccessfulbuild for? SNAPSHOTS?

Here is my logs:
 
  
  










  
  





  





Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)




>From: "Vincent Massol" <[EMAIL PROTECTED]>
>Reply-To: "Maven Users List" 
>To: "'Maven Users List'" 
>Subject: RE: RE : CruiseControl issues trying to install and run from
>maven.Pleasehelp.
>Date: Wed, 21 Sep 2005 22:47:15 +0200
>
>Hi Doug,
>
> > -Original Message-
> > From: Doug Douglass [mailto:[EMAIL PROTECTED]
> > Sent: mercredi 21 septembre 2005 22:44
> > To: Maven Users List
> > Subject: Re: RE : CruiseControl issues trying to install and run
> > from maven.Pleasehelp.
> >
> > Mick Knutson wrote:
> > > So, the config.xml is at least a starting point right?
> > > What I need to know then, is:
> > >
> > > 1. What is missing to at least get an initial checkout and build
>working
> > > 2. Where do I put the config.xml?
> > > 3. Do I just run c:\cc\main\bin\cruisecontrol.bat once to get the
>whole
> > > thing into motion?
> > >
> > >
> > > Thank You
> > > Mick Knutson
> > >
> >
> > As I said, I pretty much follow the CC docs but I don't have a link
> > handy. From what I recall, maven CC plugin wants to run CC _within_
> > the maven project, whereas CC itself usually runs _outside_ of any
> > single project.
>
>That is not quite correct. The default CC plugin properties run CC in
>the target dir (for lack of a better default) but you can change them
>to run CC anywhere on your machine. That said, this goal is just a
>convenience and you're free not to use it of course.
>
>[snip]
>
>-Vincent
>
>
>-
>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]





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



RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-21 Thread Mick Knutson
So how do I get it to try to check out a new version, then rebuild each 
time?


Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)





From: "David Jackman" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" 
To: "Maven Users List" 
Subject: RE: RE : CruiseControl issues trying to install and run from 
maven.Pleasehelp.

Date: Wed, 21 Sep 2005 15:54:24 -0600

CC uses the lastsuccessfulbuild property when looking for changes since
the last build (to determine if another build should start).  The value
is a date/time in MMDDhhmmss format.

-Original Message-
From: Mick Knutson [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 21, 2005 3:12 PM
To: users@maven.apache.org
Subject: RE: RE : CruiseControl issues trying to install and run from
maven.Pleasehelp.

OK, it seems that there are many values that where not correct, but I
have now got it to work and is going every hour for now.
What is the lastsuccessfulbuild for? SNAPSHOTS?

Here is my logs:
 
  
  










  
  





  





Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)




>From: "Vincent Massol" <[EMAIL PROTECTED]>
>Reply-To: "Maven Users List" 
>To: "'Maven Users List'" 
>Subject: RE: RE : CruiseControl issues trying to install and run from
>maven.Pleasehelp.
>Date: Wed, 21 Sep 2005 22:47:15 +0200
>
>Hi Doug,
>
> > -Original Message-
> > From: Doug Douglass [mailto:[EMAIL PROTECTED]
> > Sent: mercredi 21 septembre 2005 22:44
> > To: Maven Users List
> > Subject: Re: RE : CruiseControl issues trying to install and run
> > from maven.Pleasehelp.
> >
> > Mick Knutson wrote:
> > > So, the config.xml is at least a starting point right?
> > > What I need to know then, is:
> > >
> > > 1. What is missing to at least get an initial checkout and build
>working
> > > 2. Where do I put the config.xml?
> > > 3. Do I just run c:\cc\main\bin\cruisecontrol.bat once to get the
>whole
> > > thing into motion?
> > >
> > >
> > > Thank You
> > > Mick Knutson
> > >
> >
> > As I said, I pretty much follow the CC docs but I don't have a link
> > handy. From what I recall, maven CC plugin wants to run CC _within_
> > the maven project, whereas CC itself usually runs _outside_ of any
> > single project.
>
>That is not quite correct. The default CC plugin properties run CC in
>the target dir (for lack of a better default) but you can change them
>to run CC anywhere on your machine. That said, this goal is just a
>convenience and you're free not to use it of course.
>
>[snip]
>
>-Vincent
>
>
>-
>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: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-21 Thread David Jackman
CC uses the lastsuccessfulbuild property when looking for changes since
the last build (to determine if another build should start).  The value
is a date/time in MMDDhhmmss format.

-Original Message-
From: Mick Knutson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 21, 2005 3:12 PM
To: users@maven.apache.org
Subject: RE: RE : CruiseControl issues trying to install and run from
maven.Pleasehelp.

OK, it seems that there are many values that where not correct, but I
have now got it to work and is going every hour for now.
What is the lastsuccessfulbuild for? SNAPSHOTS?

Here is my logs:
 
  
  










  
  





  





Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)




>From: "Vincent Massol" <[EMAIL PROTECTED]>
>Reply-To: "Maven Users List" 
>To: "'Maven Users List'" 
>Subject: RE: RE : CruiseControl issues trying to install and run from 
>maven.Pleasehelp.
>Date: Wed, 21 Sep 2005 22:47:15 +0200
>
>Hi Doug,
>
> > -Original Message-
> > From: Doug Douglass [mailto:[EMAIL PROTECTED]
> > Sent: mercredi 21 septembre 2005 22:44
> > To: Maven Users List
> > Subject: Re: RE : CruiseControl issues trying to install and run 
> > from maven.Pleasehelp.
> >
> > Mick Knutson wrote:
> > > So, the config.xml is at least a starting point right?
> > > What I need to know then, is:
> > >
> > > 1. What is missing to at least get an initial checkout and build
>working
> > > 2. Where do I put the config.xml?
> > > 3. Do I just run c:\cc\main\bin\cruisecontrol.bat once to get the
>whole
> > > thing into motion?
> > >
> > >
> > > Thank You
> > > Mick Knutson
> > >
> >
> > As I said, I pretty much follow the CC docs but I don't have a link 
> > handy. From what I recall, maven CC plugin wants to run CC _within_ 
> > the maven project, whereas CC itself usually runs _outside_ of any 
> > single project.
>
>That is not quite correct. The default CC plugin properties run CC in 
>the target dir (for lack of a better default) but you can change them 
>to run CC anywhere on your machine. That said, this goal is just a 
>convenience and you're free not to use it of course.
>
>[snip]
>
>-Vincent
>
>
>-
>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]



M2 beta2, svn, CruiseControl, scm:update fails

2005-09-21 Thread Kahn, Peter
I am trying to get m2 working with subversion and CruiseControl.  Amy I
trying to do with too early?  The following describes how the goal
scm:update isn't working for me.  Any suggestions would be welcomed.
Thanks

I have a simple pom:

   
 
   snapshots-plugins
   Maven Snapshot Plugins Development
Repository

http://snapshots.maven.codehaus.org/maven2/plugins
   always
 
 
   snapshots-plugins2
   Maven Snapshot Plugins Development
Repository2
   http://repo1.maven.org/maven2
   always
 
   


scm:svn:http://myhost/svn/basecamp/SplitTop/m2main

http://myhost/svn/basecamp/SplitTop/m2main
  
...


When I attempt to run m2 with the scm:update goal, I get the following:
[INFO] Searching repository for plugin with prefix:
'scm'.
[INFO] org.apache.maven.plugins: checking for updates
from snapshots-plugins
[INFO] org.apache.maven.plugins: checking for updates
from snapshots-plugins2
[INFO] artifact
org.apache.maven.plugins:maven-scm-plugin: checking for updates from
snapshots-plugins
[INFO] artifact
org.apache.maven.plugins:maven-scm-plugin: checking for updates from
snapshots-plugins2
[INFO]


[INFO] Building
com.ironmountain.basecamp:app:pom:1.0-SNAPSHOT
[INFO]task-segment: [scm:update]
[INFO]


[INFO] [scm:update]
[INFO]


[ERROR] BUILD ERROR
[INFO]


[INFO] Diagnosis: Cannot run checkout command :
[INFO]


[ERROR] Cause:
org.apache.maven.plugin.MojoExecutionException: Cannot
run checkout command :
at
org.apache.maven.scm.plugin.UpdateMojo.execute(UpdateMojo.java:77)
at
org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginMa
nager.java:357)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(Default
LifecycleExecutor.java:479)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoa
l(DefaultLifecycleExecutor.java:460)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultL
ifecycleExecutor.java:442)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(
DefaultLifecycleExecutor.java:273)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifec
ycleExecutor.java:131)
at
org.apache.maven.DefaultMaven.execute(DefaultMaven.java:186)
at
org.apache.maven.cli.MavenCli.main(MavenCli.java:302)
at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:25)
at
java.lang.reflect.Method.invoke(Method.java:585)
at
org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at
org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at
org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
at
org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.scm.ScmException: Can't load
the scm provider.
at
org.apache.maven.scm.plugin.AbstractScmMojo.getScmRepository(AbstractScm
Mojo.java:156)
at
org.apache.maven.scm.plugin.UpdateMojo.execute(UpdateMojo.java:51)
... 16 more
Caused by: java.lang.NullPointerException: You need to
define a connectiuonUrl parameter.
at
org.apache.maven.scm.plugin.AbstractScmMojo.getConnectionUrl(AbstractScm
Mojo.java:97)
at
org.apache.maven.scm.plugin.AbstractScmMojo.getScmRepository(AbstractScm
Mojo.java:132)
... 17 more
 

RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-21 Thread Mick Knutson
OK, it seems that there are many values that where not correct, but I have 
now got it to work and is going every hour for now.

What is the lastsuccessfulbuild for? SNAPSHOTS?

Here is my logs:


 
 
   
   
   
   
   
   
   
   
   
   
 
 
   
   
   

   
 





Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)





From: "Vincent Massol" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" 
To: "'Maven Users List'" 
Subject: RE: RE : CruiseControl issues trying to install and run from 
maven.Pleasehelp.

Date: Wed, 21 Sep 2005 22:47:15 +0200

Hi Doug,

> -Original Message-
> From: Doug Douglass [mailto:[EMAIL PROTECTED]
> Sent: mercredi 21 septembre 2005 22:44
> To: Maven Users List
> Subject: Re: RE : CruiseControl issues trying to install and run from
> maven.Pleasehelp.
>
> Mick Knutson wrote:
> > So, the config.xml is at least a starting point right?
> > What I need to know then, is:
> >
> > 1. What is missing to at least get an initial checkout and build 
working

> > 2. Where do I put the config.xml?
> > 3. Do I just run c:\cc\main\bin\cruisecontrol.bat once to get the 
whole

> > thing into motion?
> >
> >
> > Thank You
> > Mick Knutson
> >
>
> As I said, I pretty much follow the CC docs but I don't have a link
> handy. From what I recall, maven CC plugin wants to run CC _within_ the
> maven project, whereas CC itself usually runs _outside_ of any single
> project.

That is not quite correct. The default CC plugin properties run CC in the
target dir (for lack of a better default) but you can change them to run CC
anywhere on your machine. That said, this goal is just a convenience and
you're free not to use it of course.

[snip]

-Vincent


-
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: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-21 Thread Doug Douglass

Vincent Massol wrote:



That is not quite correct. The default CC plugin properties run CC in the
target dir (for lack of a better default) but you can change them to run CC
anywhere on your machine. That said, this goal is just a convenience and
you're free not to use it of course.

[snip]

-Vincent



Hi Vincent,

Your explanation is definitely more correct. I did originally look into 
using the various CC plugin properties to affect the generated config.


I think I just got confused between the "plugin way" and what the CC 
docs were describing. Attempting a multiproject on my first CC project 
probably hampered things a bit also.


Perhaps I'll revisit the CC plugin now that I'm more confident with 
maven, and have couple of projects to add into CC. But I'm also trying 
to ramp up on m2 by attempting to help out with some of the novice bugs


So much time, so little to do...strike that...reverse it.

Cheers,
Doug

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



RE: RE : CruiseControl issues trying to install and run from maven.Pleasehelp.

2005-09-21 Thread Vincent Massol
Hi Doug,

> -Original Message-
> From: Doug Douglass [mailto:[EMAIL PROTECTED]
> Sent: mercredi 21 septembre 2005 22:44
> To: Maven Users List
> Subject: Re: RE : CruiseControl issues trying to install and run from
> maven.Pleasehelp.
> 
> Mick Knutson wrote:
> > So, the config.xml is at least a starting point right?
> > What I need to know then, is:
> >
> > 1. What is missing to at least get an initial checkout and build working
> > 2. Where do I put the config.xml?
> > 3. Do I just run c:\cc\main\bin\cruisecontrol.bat once to get the whole
> > thing into motion?
> >
> >
> > Thank You
> > Mick Knutson
> >
> 
> As I said, I pretty much follow the CC docs but I don't have a link
> handy. From what I recall, maven CC plugin wants to run CC _within_ the
> maven project, whereas CC itself usually runs _outside_ of any single
> project.

That is not quite correct. The default CC plugin properties run CC in the
target dir (for lack of a better default) but you can change them to run CC
anywhere on your machine. That said, this goal is just a convenience and
you're free not to use it of course.

[snip]

-Vincent


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



Re: RE : CruiseControl issues trying to install and run from maven. Pleasehelp.

2005-09-21 Thread Doug Douglass

Mick Knutson wrote:

So, the config.xml is at least a starting point right?
What I need to know then, is:

1. What is missing to at least get an initial checkout and build working
2. Where do I put the config.xml?
3. Do I just run c:\cc\main\bin\cruisecontrol.bat once to get the whole 
thing into motion?



Thank You
Mick Knutson



As I said, I pretty much follow the CC docs but I don't have a link 
handy. From what I recall, maven CC plugin wants to run CC _within_ the 
maven project, whereas CC itself usually runs _outside_ of any single 
project.


I've got CC installed at /opt/CC on a linux box, you'll have to 
translate for use on Windows ;). Under the CC install dir I created a 
"work" directory that contains "checkout" and "logs" subdirs.


For each project to run within CC:

   1 cd to work/checkout and I manually check out the src (CVS in my case)
   2 cd into the project dir and run maven cruisecontrol:config
   3 copy cruisecontrol.xml to /opt/CC/work/config.xml. Note, you'll 
have to merge with any existing config.xml if you have more than 1 project.
   4 edit config.xml and fixup any paths so they refer to the checkout 
and logs subdirs of work instead of /target/...

   5 cd to work and start CC (e.g., /opt/CC/main/bin/cruisecontrol.sh)

That's how it works for me, YMMV. Reply off list and I may be able to 
help further.


DD




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



RE: RE : CruiseControl issues trying to install and run from maven. Pleasehelp.

2005-09-21 Thread Mick Knutson

So, the config.xml is at least a starting point right?
What I need to know then, is:

1. What is missing to at least get an initial checkout and build working
2. Where do I put the config.xml?
3. Do I just run c:\cc\main\bin\cruisecontrol.bat once to get the whole 
thing into motion?



Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)





From: "David Jackman" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" 
To: "Maven Users List" 
Subject: RE: RE : CruiseControl issues trying to install and run from 
maven. Pleasehelp.

Date: Wed, 21 Sep 2005 13:27:30 -0600

Same here.  In fact, I don't even use the CC plugin for Maven.  I create 
and edit the config file by hand all the time.  It really isn't that hard 
anymore with the updated docs on the CC site (it was a real pain when all 
there was was an example config file with only a few elements in it).


..David..


-Original Message-
From: Pascal Larin [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 21, 2005 1:16 PM
To: 'Maven Users List'
Subject: RE : CruiseControl issues trying to install and run from maven. 
Pleasehelp.


Mick,

We do the same thing. If you plan to use 2 or more projects on 
CruiseControl, it is not the way to do it. CruiseControl is designed to be 
started one time. It reads his configuration file every time it builds a 
project.


Pascal



-Message d'origine-
De : Doug Douglass [mailto:[EMAIL PROTECTED] Envoyé : September 21, 
2005 15:02 À : Maven Users List Objet : Re: CruiseControl issues trying to 
install and run from maven.

Pleasehelp.

Mick,

FWIW, I don't run CC from maven. I use the CC plugin to generate a config, 
tweak the config.xml and start CC manually. I found the CC docs/howto and 
CC plugin docs/howto describe different usage patterns, so I went with the 
straight CC docs. YMMV


Doug

Mick Knutson wrote:
> Why do I always feel ignored on this list?
>
> I get 1 out of about 30 posting responded to. I do not feel like I am
> asking stupid questions at all.
> So, _please_, I really need to get cruise control working.
>
>
> project.properties:
> ===
>
###-
-----###
>
>
> # Cruise Control Settings - these are used in the generation of the
> cruisecontrol config file.
> maven.cruisecontrol.home=C:/opt/cruisecontrol-2.3.0.1
> #maven.cruisecontrol.checkout.dir=${basedir}
>
maven.cruisecontrol.mail.css=${maven.cruisecontrol.home}/main/reporting/jsp/
webcontent/css/cruisecontrol.css
>
>
> maven.cruisecontrol.mail.xlsdir=${maven.cruisecontrol.home}/main/xsl
> maven.cruisecontrol.logs.dir=${maven.build.dir}
> maven.cruisecontrol.work.dir=${maven.build.dir}/cruisecontrol
> #maven.cruisecontrol.goals=scm:update-project|clean
> test|multiproject:install|multiproject:site|site:deploy
> maven.cruisecontrol.goals=scm:update-project|clean
> test|multiproject:install|site:deploy
> #This is in seconds
> maven.cruisecontrol.schedule.interval=3600
>
>
> CruiseControl config.xml that is generated:
> ==
> 
>
> 
>  
>
>  
file="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastfo
rwardProject/status.txt">
>
>
>  
>
>
>  
localWorkingCopy="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/t
arget/cruisecontrol/checkout/fastforwardProject"
>
> cvsroot=":pserver:[EMAIL PROTECTED]:/usr/local/cvsroot">
>  
>
>
>  
projectfile="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target
/cruisecontrol/checkout/fastforwardProject/project.xml"
>
> mavenscript="C:\Maven_1.0.2/bin/maven.bat">
>  
>
>
dir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastfor
wardProject"
>
> encoding="ISO-8859-1">
>  
dir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/cruisec
ontrol/checkout/fastforwardProject"
>
> pattern="TEST-*.xml">
>  
>
>
>  
file="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastfo
rwardProject/status.txt">
>
>
>  
>  
css="C:/opt/cruisecontrol-2.3.0.1/main/reporting/jsp/webcontent/css/cruiseco
ntrol.css"
>
> mailhost="localhost"
>
buildresultsurl="http://www.safeway.com/cruisecontrol/buildresults/fastforwa
rdProject"
>
> subjectprefix="[BUILD]" defaultsuffix="@safeway.com"
> xsldir="C:/opt/cruisecontrol-2.3.0.1/main/xsl"
>
logdir="

RE: RE : CruiseControl issues trying to install and run from maven. Pleasehelp.

2005-09-21 Thread David Jackman
Same here.  In fact, I don't even use the CC plugin for Maven.  I create and 
edit the config file by hand all the time.  It really isn't that hard anymore 
with the updated docs on the CC site (it was a real pain when all there was was 
an example config file with only a few elements in it).

..David..


-Original Message-
From: Pascal Larin [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 21, 2005 1:16 PM
To: 'Maven Users List'
Subject: RE : CruiseControl issues trying to install and run from maven. 
Pleasehelp.

Mick,

We do the same thing. If you plan to use 2 or more projects on CruiseControl, 
it is not the way to do it. CruiseControl is designed to be started one time. 
It reads his configuration file every time it builds a project.

Pascal



-Message d'origine-
De : Doug Douglass [mailto:[EMAIL PROTECTED] Envoyé : September 21, 2005 15:02 
À : Maven Users List Objet : Re: CruiseControl issues trying to install and run 
from maven.
Pleasehelp.

Mick,

FWIW, I don't run CC from maven. I use the CC plugin to generate a config, 
tweak the config.xml and start CC manually. I found the CC docs/howto and CC 
plugin docs/howto describe different usage patterns, so I went with the 
straight CC docs. YMMV

Doug

Mick Knutson wrote:
> Why do I always feel ignored on this list?
> 
> I get 1 out of about 30 posting responded to. I do not feel like I am 
> asking stupid questions at all.
> So, _please_, I really need to get cruise control working.
> 
> 
> project.properties:
> ===
>
###-
-### 
> 
> 
> # Cruise Control Settings - these are used in the generation of the 
> cruisecontrol config file.
> maven.cruisecontrol.home=C:/opt/cruisecontrol-2.3.0.1
> #maven.cruisecontrol.checkout.dir=${basedir}
>
maven.cruisecontrol.mail.css=${maven.cruisecontrol.home}/main/reporting/jsp/
webcontent/css/cruisecontrol.css 
> 
> 
> maven.cruisecontrol.mail.xlsdir=${maven.cruisecontrol.home}/main/xsl
> maven.cruisecontrol.logs.dir=${maven.build.dir}
> maven.cruisecontrol.work.dir=${maven.build.dir}/cruisecontrol
> #maven.cruisecontrol.goals=scm:update-project|clean
> test|multiproject:install|multiproject:site|site:deploy
> maven.cruisecontrol.goals=scm:update-project|clean
> test|multiproject:install|site:deploy
> #This is in seconds
> maven.cruisecontrol.schedule.interval=3600
> 
> 
> CruiseControl config.xml that is generated:
> ==
> 
> 
> 
>  
>
>  
file="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastfo
rwardProject/status.txt"> 
> 
> 
>  
>
>
>  
localWorkingCopy="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/t
arget/cruisecontrol/checkout/fastforwardProject" 
> 
> cvsroot=":pserver:[EMAIL PROTECTED]:/usr/local/cvsroot">
>  
>
>
>  
projectfile="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target
/cruisecontrol/checkout/fastforwardProject/project.xml" 
> 
> mavenscript="C:\Maven_1.0.2/bin/maven.bat">
>  
>
>
dir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastfor
wardProject" 
> 
> encoding="ISO-8859-1">
>  
dir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/cruisec
ontrol/checkout/fastforwardProject" 
> 
> pattern="TEST-*.xml">
>  
>
>
>  
file="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastfo
rwardProject/status.txt"> 
> 
> 
>  
>  
css="C:/opt/cruisecontrol-2.3.0.1/main/reporting/jsp/webcontent/css/cruiseco
ntrol.css" 
> 
> mailhost="localhost"
>
buildresultsurl="http://www.safeway.com/cruisecontrol/buildresults/fastforwa
rdProject" 
> 
> subjectprefix="[BUILD]" defaultsuffix="@safeway.com"
> xsldir="C:/opt/cruisecontrol-2.3.0.1/main/xsl"
>
logdir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fast
forwardProject" 
> 
> skipusers="false" returnaddress="[EMAIL PROTECTED]">
> DEFANGED_alias="knut01">
>
>
>
>
>
>  
>
>
>
>  
> 
> 
> 
> 
> 
> Thank You
> Mick Knutson
> 
> Sr. Java/J2EE Consultant
> BASE logic, inc.
> (415) 648-1804 (S.F., CA)
> http://www.BASELogic.com
> 
> HP Consulting Services (Walnut Creek, CA)
> 
> 
> 
> 
>> From: "Mick Knutson" <[EMAIL PROTECTED]>
>> Re

RE : CruiseControl issues trying to install and run from maven. Pleasehelp.

2005-09-21 Thread Pascal Larin
Mick,

We do the same thing. If you plan to use 2 or more projects on
CruiseControl, it is not the way to do it. CruiseControl is designed to be
started one time. It reads his configuration file every time it builds a
project.

Pascal



-Message d'origine-
De : Doug Douglass [mailto:[EMAIL PROTECTED] 
Envoyé : September 21, 2005 15:02
À : Maven Users List
Objet : Re: CruiseControl issues trying to install and run from maven.
Pleasehelp.

Mick,

FWIW, I don't run CC from maven. I use the CC plugin to generate a 
config, tweak the config.xml and start CC manually. I found the CC 
docs/howto and CC plugin docs/howto describe different usage patterns, 
so I went with the straight CC docs. YMMV

Doug

Mick Knutson wrote:
> Why do I always feel ignored on this list?
> 
> I get 1 out of about 30 posting responded to. I do not feel like I am 
> asking stupid questions at all.
> So, _please_, I really need to get cruise control working.
> 
> 
> project.properties:
> ===
>
###-
-### 
> 
> 
> # Cruise Control Settings - these are used in the generation of the
> cruisecontrol config file.
> maven.cruisecontrol.home=C:/opt/cruisecontrol-2.3.0.1
> #maven.cruisecontrol.checkout.dir=${basedir}
>
maven.cruisecontrol.mail.css=${maven.cruisecontrol.home}/main/reporting/jsp/
webcontent/css/cruisecontrol.css 
> 
> 
> maven.cruisecontrol.mail.xlsdir=${maven.cruisecontrol.home}/main/xsl
> maven.cruisecontrol.logs.dir=${maven.build.dir}
> maven.cruisecontrol.work.dir=${maven.build.dir}/cruisecontrol
> #maven.cruisecontrol.goals=scm:update-project|clean
> test|multiproject:install|multiproject:site|site:deploy
> maven.cruisecontrol.goals=scm:update-project|clean
> test|multiproject:install|site:deploy
> #This is in seconds
> maven.cruisecontrol.schedule.interval=3600
> 
> 
> CruiseControl config.xml that is generated:
> ==
> 
> 
> 
>  
>
>  
file="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastfo
rwardProject/status.txt"> 
> 
> 
>  
>
>
>  
localWorkingCopy="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/t
arget/cruisecontrol/checkout/fastforwardProject" 
> 
> cvsroot=":pserver:[EMAIL PROTECTED]:/usr/local/cvsroot">
>  
>
>
>  
projectfile="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target
/cruisecontrol/checkout/fastforwardProject/project.xml" 
> 
> mavenscript="C:\Maven_1.0.2/bin/maven.bat">
>  
>
>
dir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastfor
wardProject" 
> 
> encoding="ISO-8859-1">
>  
dir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/cruisec
ontrol/checkout/fastforwardProject" 
> 
> pattern="TEST-*.xml">
>  
>    
>
>  
file="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastfo
rwardProject/status.txt"> 
> 
> 
>  
>  
css="C:/opt/cruisecontrol-2.3.0.1/main/reporting/jsp/webcontent/css/cruiseco
ntrol.css" 
> 
> mailhost="localhost"
>
buildresultsurl="http://www.safeway.com/cruisecontrol/buildresults/fastforwa
rdProject" 
> 
> subjectprefix="[BUILD]" defaultsuffix="@safeway.com"
> xsldir="C:/opt/cruisecontrol-2.3.0.1/main/xsl"
>
logdir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fast
forwardProject" 
> 
> skipusers="false" returnaddress="[EMAIL PROTECTED]">
> DEFANGED_alias="knut01">
>
>
>
>
>
>  
>
>
>
>  
> 
> 
> 
> 
> 
> Thank You
> Mick Knutson
> 
> Sr. Java/J2EE Consultant
> BASE logic, inc.
> (415) 648-1804 (S.F., CA)
> http://www.BASELogic.com
> 
> HP Consulting Services (Walnut Creek, CA)
> 
> 
> 
> 
>> From: "Mick Knutson" <[EMAIL PROTECTED]>
>> Reply-To: "Maven Users List" 
>> To: users@maven.apache.org
>> Subject: CruiseControl issues trying to install and run from maven. 
>> Please help.
>> Date: Wed, 21 Sep 2005 10:25:00 -0700
>>
>> I have maven generating my config.xml for me when I manually run 
>> "maven cruisecontrol", but there does not seem to be a 
>> cruisecontrol:install in the latest plugin.
>> Also, when I run "maven cruisecontrol:run", I get some strange Sax 
>> Parser error.
>>
>> C:\opt\local\bla

Re: CruiseControl issues trying to install and run from maven. Please help.

2005-09-21 Thread Doug Douglass

Mick,

FWIW, I don't run CC from maven. I use the CC plugin to generate a 
config, tweak the config.xml and start CC manually. I found the CC 
docs/howto and CC plugin docs/howto describe different usage patterns, 
so I went with the straight CC docs. YMMV


Doug

Mick Knutson wrote:

Why do I always feel ignored on this list?

I get 1 out of about 30 posting responded to. I do not feel like I am 
asking stupid questions at all.

So, _please_, I really need to get cruise control working.


project.properties:
===
###--### 



# Cruise Control Settings - these are used in the generation of the
cruisecontrol config file.
maven.cruisecontrol.home=C:/opt/cruisecontrol-2.3.0.1
#maven.cruisecontrol.checkout.dir=${basedir}
maven.cruisecontrol.mail.css=${maven.cruisecontrol.home}/main/reporting/jsp/webcontent/css/cruisecontrol.css 



maven.cruisecontrol.mail.xlsdir=${maven.cruisecontrol.home}/main/xsl
maven.cruisecontrol.logs.dir=${maven.build.dir}
maven.cruisecontrol.work.dir=${maven.build.dir}/cruisecontrol
#maven.cruisecontrol.goals=scm:update-project|clean
test|multiproject:install|multiproject:site|site:deploy
maven.cruisecontrol.goals=scm:update-project|clean
test|multiproject:install|site:deploy
#This is in seconds
maven.cruisecontrol.schedule.interval=3600


CruiseControl config.xml that is generated:
==



 
   
 file="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastforwardProject/status.txt"> 



 
   
   
 localWorkingCopy="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/cruisecontrol/checkout/fastforwardProject" 


cvsroot=":pserver:[EMAIL PROTECTED]:/usr/local/cvsroot">
 
   
   
 projectfile="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/cruisecontrol/checkout/fastforwardProject/project.xml" 


mavenscript="C:\Maven_1.0.2/bin/maven.bat">
 
   
   dir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastforwardProject" 


encoding="ISO-8859-1">
 dir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/cruisecontrol/checkout/fastforwardProject" 


pattern="TEST-*.xml">
 
   
   
 file="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastforwardProject/status.txt"> 



 
 css="C:/opt/cruisecontrol-2.3.0.1/main/reporting/jsp/webcontent/css/cruisecontrol.css" 


mailhost="localhost"
buildresultsurl="http://www.safeway.com/cruisecontrol/buildresults/fastforwardProject"; 


subjectprefix="[BUILD]" defaultsuffix="@safeway.com"
xsldir="C:/opt/cruisecontrol-2.3.0.1/main/xsl"
logdir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastforwardProject" 


skipusers="false" returnaddress="[EMAIL PROTECTED]">
   DEFANGED_alias="knut01">

   
   
   
   
   
 
   
   
   
 





Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)





From: "Mick Knutson" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" 
To: users@maven.apache.org
Subject: CruiseControl issues trying to install and run from maven. 
Please help.

Date: Wed, 21 Sep 2005 10:25:00 -0700

I have maven generating my config.xml for me when I manually run 
"maven cruisecontrol", but there does not seem to be a 
cruisecontrol:install in the latest plugin.
Also, when I run "maven cruisecontrol:run", I get some strange Sax 
Parser error.


C:\opt\local\blackhawk\FastForward_AppServer\fastforward>maven
cruisecontrol:install
__ __
| \/ |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \ ~ intelligent projects ~
|_| |_\__,_|\_/\___|_||_| v. 1.0.2

BUILD FAILED
Goal "cruisecontrol:install" does not exist in this project.
Total time: 3 seconds
Finished at: Wed Sep 21 10:11:41 PDT 2005

C:\opt\local\blackhawk\FastForward_AppServer\fastforward>maven
cruisecontrol:run
__ __
| \/ |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \ ~ intelligent projects ~
|_| |_\__,_|\_/\___|_||_| v. 1.0.2

build:start:

scm:parse-connection:
   [echo] Using connection:
scm:cvs:pserver:[EMAIL PROTECTED]:/usr/local/cvsroot:FastForward_AppServer 



Using SCM method: cvs
Using CVSROOT: :pserver:[EMAIL PROTECTED]:/usr/local/cvsroot
Using module: FastForward_AppServer

scm:validate:

cruisecontrol:validate:

cruisecontrol:run:
   [java] [cc]Sep-21 10:11:52 Main - CruiseControl Version
2.3.0.1
   [java] [cc]Sep-21 10:11:52 Main - failed to load config
file [config.xml] : Could not load org.apache.xerces.parsers.SAXParser:
SAX2
driver class org.apache.xerc

RE: CruiseControl issues trying to install and run from maven. Please help.

2005-09-21 Thread Mick Knutson

Why do I always feel ignored on this list?

I get 1 out of about 30 posting responded to. I do not feel like I am asking 
stupid questions at all.

So, _please_, I really need to get cruise control working.


project.properties:
===
###--###

# Cruise Control Settings - these are used in the generation of the
cruisecontrol config file.
maven.cruisecontrol.home=C:/opt/cruisecontrol-2.3.0.1
#maven.cruisecontrol.checkout.dir=${basedir}
maven.cruisecontrol.mail.css=${maven.cruisecontrol.home}/main/reporting/jsp/webcontent/css/cruisecontrol.css

maven.cruisecontrol.mail.xlsdir=${maven.cruisecontrol.home}/main/xsl
maven.cruisecontrol.logs.dir=${maven.build.dir}
maven.cruisecontrol.work.dir=${maven.build.dir}/cruisecontrol
#maven.cruisecontrol.goals=scm:update-project|clean
test|multiproject:install|multiproject:site|site:deploy
maven.cruisecontrol.goals=scm:update-project|clean
test|multiproject:install|site:deploy
#This is in seconds
maven.cruisecontrol.schedule.interval=3600


CruiseControl config.xml that is generated:
==



 
   
 

 
   
   
 
 
   
   
 
 
   
   
 
 
   
   
 

 
 http://www.safeway.com/cruisecontrol/buildresults/fastforwardProject";
subjectprefix="[BUILD]" defaultsuffix="@safeway.com"
xsldir="C:/opt/cruisecontrol-2.3.0.1/main/xsl"
logdir="C:\opt\local\blackhawk\FastForward_AppServer\fastforward/target/fastforwardProject"
skipusers="false" returnaddress="[EMAIL PROTECTED]">
   
   
   
   
   
   
 
   
   
   
 





Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)





From: "Mick Knutson" <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" 
To: users@maven.apache.org
Subject: CruiseControl issues trying to install and run from maven. Please 
help.

Date: Wed, 21 Sep 2005 10:25:00 -0700

I have maven generating my config.xml for me when I manually run "maven 
cruisecontrol", but there does not seem to be a cruisecontrol:install in 
the latest plugin.
Also, when I run "maven cruisecontrol:run", I get some strange Sax Parser 
error.


C:\opt\local\blackhawk\FastForward_AppServer\fastforward>maven
cruisecontrol:install
__ __
| \/ |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \ ~ intelligent projects ~
|_| |_\__,_|\_/\___|_||_| v. 1.0.2

BUILD FAILED
Goal "cruisecontrol:install" does not exist in this project.
Total time: 3 seconds
Finished at: Wed Sep 21 10:11:41 PDT 2005

C:\opt\local\blackhawk\FastForward_AppServer\fastforward>maven
cruisecontrol:run
__ __
| \/ |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \ ~ intelligent projects ~
|_| |_\__,_|\_/\___|_||_| v. 1.0.2

build:start:

scm:parse-connection:
   [echo] Using connection:
scm:cvs:pserver:[EMAIL PROTECTED]:/usr/local/cvsroot:FastForward_AppServer

Using SCM method: cvs
Using CVSROOT: :pserver:[EMAIL PROTECTED]:/usr/local/cvsroot
Using module: FastForward_AppServer

scm:validate:

cruisecontrol:validate:

cruisecontrol:run:
   [java] [cc]Sep-21 10:11:52 Main - CruiseControl Version
2.3.0.1
   [java] [cc]Sep-21 10:11:52 Main - failed to load config
file [config.xml] : Could not load org.apache.xerces.parsers.SAXParser:
SAX2
driver class org.apache.xerces.parsers.SAXParser not found:
org.apache.xerces.parsers.SAXParser
   [java] [cc]Sep-21 10:11:52 Main - Usage:
   [java] [cc]Sep-21 10:11:52 Main -
   [java] [cc]Sep-21 10:11:52 Main - Starts a continuous
integration loop
   [java] [cc]Sep-21 10:11:52 Main -
   [java] [cc]Sep-21 10:11:52 Main - java CruiseControl
[options]
   [java] [cc]Sep-21 10:11:52 Main - where options (all
optional) are:
   [java] [cc]Sep-21 10:11:52 Main -
   [java] [cc]Sep-21 10:11:52 Main - -port [number]
where number is the port of the Controller web site; defaults to 8000
   [java] [cc]Sep-21 10:11:52 Main - -user username
where username is the login used to logon to the Controller web site; by
de
fault no login is required
   [java] [cc]Sep-21 10:11:52 Main - -password pwd
where pwd is the password used to logon to the Controller web site; by
defa
ult no login is required
   [java] [cc]Sep-21 10:11:52 Main - -rmiport [number]
where number is the RMI port of the Controller; defaults to 1099
   [java] [cc]Sep-21 10:11:52 Main - -xslpath directory
where directory is location of jmx xsl files; defaults to files in
package
   [java] [cc]Sep-21 10:11:52 Main - -configfile file
where file is the configuration file; defaults to config.xml in the
current
directory
   [java] [cc]Sep-21 10:11:52 Main - -debug to
set the internal logging level to DEBUG
   [java] [cc]Sep-21 10:11:52 Main -
   [java] [cc]Sep-21 10:11:52 Main - Please keep in mind that
the J

  1   2   3   >