release-instructions.md 587 字节

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 closeAndReleaseRepository to upload to maven.
  3. Update VERSION_NAME in gradle.properties to prepare for next release version.