Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 476 Bytes

File metadata and controls

31 lines (24 loc) · 476 Bytes

Release Process

Use batch mode to auto update versions

./mvnw --batch-mode release:prepare

Release

./mvnw release:perform

Rolling back a release

./mvnw release:rollback
./mvnw release:clean

Miscellaneous

Delete a local tag and push

git tag -d <tag-name> 
git push origin :refs/tags/<tag-name>

Delete a remote tag

git push --delete origin <tag-name>