- Change the version in
gradle.propertiesto a non-SNAPSHOT version. - Update the
README.mdwith the new version. git commit -am "Prepare for release X.Y.Z."(where X.Y.Z is the new version)git tag -a X.Y.Z -m "Version X.Y.Z"(where X.Y.Z is the new version)- IN EACH MODULE (core and native) Run
./gradlew cleanand then./gradlew uploadArchives --no-daemon --no-parallel - Update the
gradle.propertiesto the next SNAPSHOT version. git commit -am "Prepare next development version."git push && git push --tags- Visit Sonatype Nexus and promote the artifact.
In ~/.gradle/gradle.properties, set the following:
SONATYPE_NEXUS_USERNAME- Sonatype username for releasing tocom.github.wseemann.SONATYPE_NEXUS_PASSWORD- Sonatype password for releasing tocom.github.wseemann.