Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 624 Bytes

RELEASE.md

File metadata and controls

23 lines (22 loc) · 624 Bytes

How to release this project

git add pom.xml
git commit -m "release <RELEASE-VERSION> (Ref <ISSUE-URL>)"
  • Create release tag
git tag -a <RELEASE-VERSION> -m "release <RELEASE-VERSION> (Ref <ISSUE-URL>)"
  • Set snapshot version x.y+1-SNAPSHOT in pom.xml and commit
git add pom.xml
git commit -m "next snapshot (Ref <ISSUE-URL>)"
  • Push
git push origin master
git push origin <RELEASE-VERSION>