Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 735 Bytes

RELEASE-PROCESS.md

File metadata and controls

54 lines (36 loc) · 735 Bytes

Release process

At this stage, the release process is manual.

Package the release

Assuming we are on a snapshot version 1.3-SNAPSHOT

mvn package

Set new version

Set the new version to 1.4

mvn versions:set

Release version

This command will build the jars and release to mvn repository

mvn install -Prelease

Commit the new pom files

git add .
git commit -m"upped to v 1.3"
git push

Create a new version tag

git tag -a v1.3 -m "version 1.3"
git push origin v1.3

Set new version and commit

Assuming new version is 1.4-SNAPSHOT

mvn versions:set
git add .
git commit -m"upped to version 1.4-SNAPSHOT"
mvn versions:commit