-
-
Notifications
You must be signed in to change notification settings - Fork 259
How_to_release
Johan Haleby edited this page Apr 17, 2026
·
13 revisions
- Update the change log indicating the date of the release
- Switch to Java 8
- Run
./mvn_release.shand follow the instructions.- If build fails because of missing dependencies do:
mvn install -Prelease -DskipTests=truemvn release:prepare -Prelease -Dresumemvn release:perform -Prelease
- Or just do:
mvn install -Prelease -DskipTests=true && mvn release:prepare -Prelease -Dresume && mvn release:perform -Prelease
- If build fails because of missing dependencies do:
- The test-only modules are excluded from Sonatype deployment automatically, so they do not need to be removed manually before release.
- Generate javadoc by running the
./generate_javadoc.shscript and enter the version to release - Update the wiki by running the
./update_wiki.shscript and enter the previous version and the new version to release. This will clone the wiki from GitHub and replaceold versiontonew versionon all pages. Afterwards you have the script offers you to commit and push the changes. If you want to avoid having to enter the github username and password each time see this page. - Update the
README.mdfile to indicate that a new version was released - Send a message to the mailing-list and twitter announcing the new release.
The release is automatically synced to Maven central (the sync process runs hourly).