@@ -2,16 +2,15 @@ Publishing a new Main release to Maven
22========
33
441 . Change the version in ` gradle.properties ` to a non-SNAPSHOT version based on Major.Minor.Patch naming scheme
5- 2 . Update ` CHANGELOG.md ` , adding the new release version and release notes
6- 4 . ` git commit -am "Prepare for release X.Y.Z." ` (where X.Y.Z is the new version)
7- 5 . ` git tag -a X.Y.X -m "Version X.Y.Z" ` (where X.Y.Z is the new version)
8- 6 . Add your sonatype login information under gradle properties mavenCentralUsername and mavenCentralPassword in your local user gradle.properties file
9- 7 . Make sure you have a gpg signing key configured (https://vanniktech.github.io/gradle-maven-publish-plugin/central/#secrets )
5+ 2 . ` git commit -am "Prepare for release X.Y.Z." ` (where X.Y.Z is the new version)
6+ 3 . ` git tag -a X.Y.X -m "Version X.Y.Z" ` (where X.Y.Z is the new version)
7+ 4 . Add your sonatype login information under gradle properties mavenCentralUsername and mavenCentralPassword in your local user gradle.properties file
8+ 5 . Make sure you have a gpg signing key configured (https://vanniktech.github.io/gradle-maven-publish-plugin/central/#secrets )
1096 . Run ` ./gradlew publish ` to build the artifacts and publish them to maven
11107 . Update the ` gradle.properties ` to the next SNAPSHOT version.
12118 . ` git commit -am "Prepare next development version." `
13129 . ` git push && git push --tags `
14- 10 . Merge to master and create a new release through the Github web UI
13+ 10 . Merge to master and create a new release through the Github web UI with release notes
1514
1615Publishing a release to an internal repository
1716========
@@ -29,4 +28,4 @@ to see how to configure additional repositories.
2928Maven Local Installation
3029=======================
3130
32- If testing changes locally, you can install to mavenLocal via ` ./gradlew publishToMavenLocal `
31+ If testing changes locally, you can install to mavenLocal via ` ./gradlew publishToMavenLocal `
0 commit comments