Skip to content

Commit

Permalink
Fixed DEVELOPMENT.md indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
saturnism committed Jul 19, 2019
1 parent 15d0d00 commit 00f7334
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,24 @@ On Bintray, manually sync to Maven Central

## Release Process
1. Make sure Bintray credentials are configured in `$HOME/.gradle/gradle.properties`
1. Configure `bintrayUsername` and `bintrayApiKey`
1. Configure `mavenUsername` and `mavenPassword` (Maven Central user token name and user token password)
1. Configure `bintrayUsername` and `bintrayApiKey`
1. Configure `mavenUsername` and `mavenPassword` (Maven Central user token name and user token password)
1. Update version in `gradle.properties`
1. Full build `./gradlew build`
1. Commit and push
1. Commit `git add gradle.properties && git commit -m "bump version to VERSION"`
1. Push `git push origin`
1. Commit `git add gradle.properties && git commit -m "bump version to VERSION"`
1. Push `git push origin`
1. Validate Travis build `travis status`
1. Push to Bintray `./gradlew bintrayUpload -i`
1. This will push to JCenter and also sync w/ Maven Central
1. This will push to JCenter and also sync w/ Maven Central
1. Tag the release
1. Tag w/ current version `git tag VERSION`
1. Push tags `git push --tags`
1. Update version in `gradle.properties` back to SNAPSHOT
1. Tag w/ current version `git tag VERSION`
1. Push tags `git push --tags`
1. Update version in `gradle.properties` back to the next version SNAPSHOT
1. Commit and push
1. Commit `git add gradle.properties && git commit -m "bump version to snapshot"`
1. Push `git push origin`
1. Commit `git add gradle.properties && git commit -m "bump version to snapshot"`
1. Push `git push origin`
1. If needed, sync changes to appropriate branch, e.g.:
1. Check out the major version branch: `git checkout 2.x`
1. Rebase: `git rebase master`
1. push: `git push origin 2.x`
1. Check out the major version branch: `git checkout 2.x`
1. Rebase: `git rebase master`
1. push: `git push origin 2.x`

0 comments on commit 00f7334

Please sign in to comment.