The release process has only been tested on Linux. The following tools must be installed.
~/.m2/settings.xml will need the following entries.
<settings>
<servers>
<server>
<id>ossrh</id>
<username>...</username>
<password>...</password>
</server>
</servers>
</settings>
Update version-sensitive files in the root and documentation sources
in the docs
subdirectory:
docs/changelog.txt
docs/versions.txt
docs/upgrade.txt
Use the docs/build-and-copy-docs.sh
script to
build a set of docs for this release and copy them to the cloned
docs.janusgraph.org
repo which you will update later.
You may also need to update the following files in the main repo for any new or updated dependencies:
NOTICE.txt
Commit or stash any uncommitted changes.
Recommended but not required:
- Delete untracked files and directories in the clone by running
git clean -fd
# This script does several things.
#
# * Prompts for a ${janusgraph.compatible.versions} update
# * Locally commits the release using the release plugin
# * Deploys Maven artifacts to Sonatype OSS (staging, not released yet)
# * Uploads zipfiles to S3
# * Locally commits gh-pages updates (index.html and javadocs)
# * Uploads AsciiDoc-generated documentation to S3
#
# Although it uploads to Sonatype OSS Staging and S3, it does
# not push to github nor does it release the Sonatype repo.
# This step is still essentially reversible: just destroy the
# local commit history, drop the Sonatype OSS Staging repo, and
# delete the files uploaded to S3.
janusgraph-dist/src/release/release.sh
This is a good time to inspect the archives just uploaded to S3. Directory listing is normally disabled on that directory, so you may need to login to the S3 console to list the contents and check that nothing's out of place.
If S3 looks good, then inspect and close the staging repository that the deploy phase automatically created on https://oss.sonatype.org/.
This is the point of no return. After releasing artifacts to Maven Central and pushing history to the public Github repo, the release can't be canceled.
Release the Sonatype OSS repository that you inspected and closed earlier. It will appear on Maven Central in an hour or two.
Finally, push your local changes to Github:
# cd to the janusgraph repository root if not already there
git push origin $BRANCH_NAME
git push origin refs/tags/$RELEASE_VERSION
git push origin gh-pages
Update these pages on the Github wiki:
- Home
- Downloads
To kickoff the next round of development, deploy a copy of the new SNAPSHOT version's artifacts to the Sonatype OSS snapshots repository.
# From the repository root
git checkout $BRANCH_NAME
mvn clean deploy -Pjanusgraph-release