Starting and stopping maven like that will be slower than just doing a "mvn clean install" to begin with.
If you're relying on svn updates (or similar kinda thing via your SCM system), you'll need to run clean first (I'd suspect) anyway. If you're doing an rm -rf of your workspace prior to building, you're already chewing up a bunch of time. With Jenkins/Hudson, there's the "Hudson Collapsing Console Sections Plugin" that helps reduce what you have to scan through in various build outputs (yeah, not quite what you were asking, but may help reduce the clutter in the logs). -----Original Message----- From: Eric Jain [mailto:[email protected]] Sent: Tuesday, May 10, 2011 9:21 PM To: Maven Users List Subject: Re: How to skip phases? On Tue, May 10, 2011 at 17:57, Barrie Treloar <[email protected]> wrote: > You also will want something like Jenkin running builds continuously > to make sure that your stuff still works as people will forget to run > mvn install before checking in (laziness, mistakes, etc) Thanks for the clarification. This issue came up because I was thinking about how to make use of the new "Task" feature in Bamboo 3.1 (don't know if Jenkins has a similar feature). The idea was that we could split `mvn install` into three tasks (`mvn clean compile`, `mvn test` and `mvn install`) to get better progress reporting without slowing down things. But looks like this won't work. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] CONFIDENTIALITY NOTICE: This e-mail and the information transmitted within including any attachments is only for the recipient(s) to which it is intended and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of; or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please send the e-mail back by replying to the sender and permanently delete the entire message and its attachments from all computers and network systems involved in its receipt.
