Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 450 Bytes

RELEASE.md

File metadata and controls

22 lines (15 loc) · 450 Bytes

Performing a release

This is my cheat sheet for doing a release.

Do the release

mvn release:clean release:prepare release:perform

Maven Central

Head over to http://oss.sonatype.org/ and do the release

Upload the documentation

git checkout <tag>
# prepare and maybe modify site.xml
mvn site:site site:stage
git checkout gh-pages
cp target/staging/* . -a
git commit -a
git push
git checkout master