Skip to content
This repository has been archived by the owner on Jan 17, 2020. It is now read-only.

Latest commit

 

History

History
35 lines (24 loc) · 806 Bytes

RELEASING.md

File metadata and controls

35 lines (24 loc) · 806 Bytes

Releasing

The process of deploying to maven central has been automated based on the Complete guide to continuous deployment to maven central from Travis CI and will be executed whenever a non-snapshot version is committed.

Check Build Status

Is the build passing?

git checkout master

Also check if you can upgrade any dependencies:

mvn versions:display-dependency-updates

Make the release

Now release everything:

mvn release:clean release:prepare  

Ping a maintainer to deploy the release by running these commands:

git checkout vX.Y.Z
mvn clean deploy -Psign-source-javadoc