I'm using Hudson with the maven-release-plugin.

As you may know, the maven-release-plugin builds project in 2 steps: release:prepare, then release:perform.

How should I configure Hudson to execute release:rollback in case release:perform failed?

link|improve this question

50% accept rate
Why would you want to do a release through Hudson? Do you want to release each build? – Raghuram Jan 28 '11 at 17:48
feedback

2 Answers

The standard way of performing release with Hudson/Jenkins is the Jenkins M2 release plugin. It wraps the maven release plugin and automates its execution.

link|improve this answer
feedback

Short answer: don't. Turn off update (do a clean checkout each time). FWIW, in my experience release:rollback isn't terribly reliable anyways.

link|improve this answer
A clean checkout won't help if the previous rollout step broke after it checked the pom with the new version number into the VCN. – Joachim Sauer May 18 '11 at 8:38
Hmm - what step broke? Why did it fail? – Will Iverson May 18 '11 at 20:58
I much prefer to delegate the troubleshooting of these problems, so I can't give you specifics ;-) I know it happened to us a few times. It was a highly customized Maven build, however, so some of the additional plugins might have messed it up, 'though. – Joachim Sauer May 19 '11 at 7:12
I've been using Maven for ~4 years now, and I've never had the release plugin break during perform like that. There are a number of things you can do to customize the build that might seem like a good idea but are actually a Bad Thing(tm). :) – Will Iverson May 19 '11 at 14:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.