At this stage, the release process is manual.
Assuming we are on a snapshot version 1.3-SNAPSHOT
mvn package
Set the new version to 1.4
mvn versions:set
This command will build the jars and release to mvn repository
mvn install -Prelease
git add .
git commit -m"upped to v 1.3"
git push
git tag -a v1.3 -m "version 1.3"
git push origin v1.3
Assuming new version is 1.4-SNAPSHOT
mvn versions:set
git add .
git commit -m"upped to version 1.4-SNAPSHOT"
mvn versions:commit