-
Notifications
You must be signed in to change notification settings - Fork 36
Release process
rdelbru edited this page Nov 30, 2012
·
2 revisions
- Ensure that everything is committed and pushed on the release-x.x branch
- Use the Maven release plugin to update the pom's versions, commit and push.
$ mvn release:update-versions -DautoVersionSubmodules=true
$ git commit -a -m "Bumped version for release"
$ git push
- Tag the release branch and push
$ git tag -a x.x
$ git push --tags
- Synchronise master branch with changes made in the release-x.x branch
$ git checkout master
$ git merge release-x.x
$ git push
- Synchronise develop branch with changes made in the release-x.x branch
$ git checkout develop
$ git merge release-x.x
This step may well lead to a merge conflict (probably even, since we have changed the version number). If so, fix it and commit. 6. Remove release-x.x branch
$ git branch -d release-x.x
$ git push origin :release-x.x