vote up 3 vote down star

I'm setting up Hudson to use the batch-task plugin to do maven releases to our internal repository. I'm doing it via:

mvn --batch-mode release:prepare
mvn --batch-mode release:perform

I'm interested in other methods people have used and the pros and cons of those methods. Also, any gotchas people have come across.

flag

3 Answers

vote up 4 vote down check

I have tended to do the releases always by hand for a few reasons. First if you have to roll back it's easier when you can go back to the original release location and do it. Secondly because you need to resolve all snapshot dependencies as part of the process.

Our development process has us leaving dependencies external to the current build at the previous release version until a fix requires an upgrade. This means that if I'm releasing Nexus, Maven, etc, then I see snapshots and it means I have to go off and release those first. This process isn't really possible to automate since it varies based on what's changed since the last release.

That said, we have a special machine (at Sonatype it's just a vm) setup only for builds. This is done to guarantee no environmental changes occur that could influence a build accidentally (like a jdk change). It also makes it easier for anyone to pick up the release process because it's always ready to go.

link|flag
1  
Sadly, I think that manual releases are a solution that would be technically acceptable but politically unacceptable. I will mention that a senior person at Sonatype personally suggested that we do our releases by hand. – sal Apr 27 at 14:40
1  
The alternative is that you do the release:prepare goal by hand, or at least the release:prepare -Ddryrun=true until you're sufficiently sure all the criteria are complete, then you could kick off your build process and be reasonably sure it's going to work. – Brian Fox Apr 28 at 11:55
I really like that idea. Having release:prepare -Ddryrun=true executed first should prevent most of the problems we might have. – sal Apr 30 at 16:33
vote up 0 vote down

I've always triggered a release manually with obvious pros and cons :-)

link|flag
vote up 0 vote down

We've been experimenting with the Hudson Maven release plugin, though I'm a bit challenged with getting it to properly credit the releases, without evil things like hardcoding passwords into our build files.

link|flag

Your Answer

Get an OpenID
or

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