Say you have a project that uses maven and a subversion repository. It consists of quite a lot of modules. So far, development happened in trunk, but now feature branches are to be introduced. This has to be as painless as possible considering all developers on the team should start using feature branches.

So, to create a branch, you use the release plugin which conveniently creates a branch for you, changes the version numbers of all module poms correctly and even updates the <scm> section in the parent pom.

Now, if you want to reintegrate the feature branch to trunk, there is no matching functionality in the release plugin -- you have to do everything by hand:

  • Merge with reintegrate flag
  • Change the version number in all poms
  • Change the <scm> section manually
  • Commit

This is not only cumbersome but also error prone if done by hand every time (and this might be frequent when using feature branches extensively). I know that at least the second point could be automated using release:update-versions or version:set, but there has to be more, right? What am I missing?

link|improve this question

50% accept rate
For these types of tasks related to a build system, most of the shops I've worked for write home-rolled perl or python scripts. Then, other integration tasks are implemented as well, such as creating or removing test DNS entries for the feature, a separate copy of the files on the dev server, etc. – zanlok Feb 2 '11 at 13:31
Hmm, this still sounds unfortunate, because it breaks the maven/subversion ecosystem. It almost sounds like it might be necessary to implement a custom maven plugin. – David Feb 4 '11 at 8:46
feedback

1 Answer

up vote 0 down vote accepted

There's no really good way to do that with the maven release plugin. Your best bet is to do the merge with just subversion (merge feature branch into trunk) and then eventually release off the trunk again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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