./gradlew test run
./gradlew test run ktlintCheck checkstyle
- Update
ARTIFACT_VERSION
ingradle.properties
./gradlew install
git checkout master && git pull
- Remove
SNAPSHOT
fromARTIFACT_VERSION
ingradle.properties
- Update versions in
README.md
./gradlew clean bintrayUpload
- Publish the artifacts from the bintray website
git add . && git commit -m "Release version x.y.z"
git tag -a release-x.y.z -m "Release version x.y.z"
- Increment the version, and add
SNAPSHOT
toARTIFACT_VERSION
ingradle.properties
git add . && git commit -m "Prepare for next development iteration"
git push && git push --tags