RE: How to schedule a nightly build in Maven

2004-09-14 Thread Peter Melling
-Original Message- From: STRAYER, JON (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 10:40 AM To: 'Maven Users List' Subject: RE: How to schedule a nightly build in Maven Anytime a build fails I and whoever checked in code since the last build get notified. The

RE: How to schedule a nightly build in Maven

2004-09-14 Thread Springer, Ian P.
Use cruisecontrol (http://cruisecontrol.sourceforge.net/). | -Original Message- | From: Peter Melling [mailto:[EMAIL PROTECTED] | Sent: Tuesday, September 14, 2004 2:23 PM | To: 'Maven Users List' | Subject: RE: How to schedule a nightly build in Maven | | | | -Original

RE: How to schedule a nightly build in Maven

2004-09-14 Thread STRAYER, JON (SBCSI)
CruiseControl does that automatically if it can use the CVS id as an email address. Otherwise you have to map them for it. -Original Message- From: Peter Melling [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 1:23 PM To: 'Maven Users List' Subject: RE: How to schedule

RE: How to schedule a nightly build in Maven

2004-09-09 Thread STRAYER, JON (SBCSI)
We use CruiseControl for this. -Original Message- From: Dinko Hadzic [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 7:22 AM To: [EMAIL PROTECTED] Subject: How to schedule a nightly build in Maven Hi Is it possible to schedule a periodical nightly build of

RE: How to schedule a nightly build in Maven

2004-09-09 Thread Dinko Hadzic
CruiseControl seems like a good choice. It however requires having Ant build scripts, which than again makes Maven unnecessary in this scenario (nightly build system)..? Or am I wrong here? I see that Maven has a plugin for CruiseControl and vice versa, what are the potential advantages of

RE: How to schedule a nightly build in Maven

2004-09-09 Thread jan-helge . bergesen
Hi'ya! At our company I've got a build server running CruiseControl over Maven without any Ant. It just uses the Mavenbuilder plugin - works like a charm. // Jan-Helge Bergesen, TMN Dept. AXXESSIT ASA | http://www.axxessit.no - Reply to All the Original Message - Author: Dinko

RE: How to schedule a nightly build in Maven

2004-09-09 Thread Liu, Zhihai
You can use MavenBuilder in CC like this. I got this tip from this list. schedule maven mavenscript=c:\maven-1.0\bin\maven.bat projectfile=checkout/myapp/project.xml goal=clean:clean test:test time=2330 / pause day=saturday starttime=

Réf. : RE: How to schedule a nightly build in Maven

2004-09-09 Thread julien . kirch
Hi all I know it's a just contribute remark but it's at least the seventh time I saw the question on the list, perhaps a small page on the site in the Getting Started would help ? Julien This message and any attachments (the message) is intended solely for the addressees

Re: How to schedule a nightly build in Maven

2004-09-09 Thread Emmanuel Venisse
The cruise control maven plugin generate the cruise control config file. Emmanuel - Original Message - From: [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Thursday, September 09, 2004 3:49 PM Subject: RE: How to schedule a nightly build in Maven Hi'ya! At our

RE: Ref. : RE: How to schedule a nightly build in Maven

2004-09-09 Thread Eric Pugh
That is a great idea.. Can you send in a patch? Eric -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 4:05 PM To: [EMAIL PROTECTED] Subject: Ref. : RE: How to schedule a nightly build in Maven Hi all I know it's

RE: How to schedule a nightly build in Maven

2004-09-09 Thread STRAYER, JON (SBCSI)
CruiseControl seems like a good choice. It however requires having Ant build scripts, which than again makes Maven unnecessary in this scenario (nightly build system)..? Or am I wrong here? CruiseControl now has a Maven builder.