These environment variables should be available:
export ORG_GRADLE_PROJECT_mavenCentralUsername=
export ORG_GRADLE_PROJECT_mavenCentralPassword=
export ORG_GRADLE_PROJECT_signingInMemoryKey=
export ORG_GRADLE_PROJECT_signingInMemoryKeyPassword=
export ORG_GRADLE_PROJECT_gradle.publish.key=
export ORG_GRADLE_PROJECT_gradle.publish.secret=
- Change the version in
gradle.properties
to a non-SNAPSHOT version - Update
CHANGELOG.md
- Update
README.md
with the new version git commit -am "Prepare for release vX.Y.Z."
(where X.Y.Z is the new version)sh ./release.sh
- Visit oss.sonatype.org and promote the artifact.
- Visit Gradle Plugin Portal and promote the plugin.
git tag -a vX.Y.Z -m "Version X.Y.Z"
(where X.Y.Z is the new version)- Change the version in
gradle.properties
to a new SNAPSHOT version git commit -am "Prepare for next development iteration"