Skip to content

Performing a release

ntherning edited this page Sep 25, 2014 · 1 revision

Change version in build.gradle to the release version. Build to make sure it works.

./gradlew clean build install
VERSION=<release-version>
git commit -a -m "Changed version number to $VERSION"
git push
git tag robovm-gradle-plugin-$VERSION
git push origin robovm-gradle-plugin-$VERSION

Upload release to Maven Central.

./gradlew uploadArchives

Update build.gradle with new development version (-SNAPSHOT).

VERSION=<new-dev-version>
git commit -a -m "Changed version number to $VERSION"
git push
Clone this wiki locally