Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 695 Bytes

release-instructions.md

File metadata and controls

16 lines (13 loc) · 695 Bytes

Publishing releases

  1. Ensure you have your .gradle/gradle.properties filled with the requisite credentials:
nexusUsername=<sonatype username>
nexusPassword=<sonatype password>
signing.keyId=<signing key id>
signing.password=<signing key password>
signing.secretKeyRingFile=<signing pgp key path>
  1. Update VERSION_NAME in gradle.properties to reflect the release version. (Remove "-SNAPSHOT" when releasing.)
  2. Run gradle publish to upload to Sonatype.
  3. Run gradle closeAndReleaseRepository to release to Maven (do not combine with previous command as ordering isn't guaranteed.)
  4. Update VERSION_NAME in gradle.properties to prepare for next release version.