Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 541 Bytes

RELEASING.md

File metadata and controls

40 lines (31 loc) · 541 Bytes

Releasing

Update pom versions:

mvn versions:set -DnewVersion=0.1.1

Commit pom update:

git commit

Tag:

git tag -u [email protected] -s v0.1.1

Deploy:

mvn -Prelease -Darguments=-Dgpg.keyname="[email protected]" -Dgpg.keyname="[email protected]" clean deploy

The release profile enables GPG signing of the artifacts.

Update pom versions again:

mvn versions:set -DnewVersion=0.1.2-SNAPSHOT

Commit pom update:

git commit

Push commits and tags:

git push
git push --tags