aboutsummaryrefslogtreecommitdiff
path: root/releasing_to_jcenter.md
diff options
context:
space:
mode:
authorbootstraponline <code@bootstraponline.com>2015-02-12 11:28:49 -0500
committerbootstraponline <code@bootstraponline.com>2015-02-12 13:13:16 -0500
commitbcb5f695ea86b08833be8c9be41a1e29c4c8015b (patch)
tree0cc9ac6e46c63ea1761e3e2d4b5c32a8eb3ffd09 /releasing_to_jcenter.md
parent7464d2c2dee592c15f67b7053989e1e2a330ab3b (diff)
downloaddroiddriver-bcb5f695ea86b08833be8c9be41a1e29c4c8015b.tar.gz
Add jcenter integration
Change-Id: I1cebf4117a5e9dcf6eecd4581d11e47b947637f0
Diffstat (limited to 'releasing_to_jcenter.md')
-rw-r--r--releasing_to_jcenter.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/releasing_to_jcenter.md b/releasing_to_jcenter.md
new file mode 100644
index 0000000..cb6be49
--- /dev/null
+++ b/releasing_to_jcenter.md
@@ -0,0 +1,14 @@
+# Releasing to JCenter
+
+Add the following credentials to `local.properties` Your API key can be [found here](https://bintray.com/user/edit/tab/apikey).
+
+```
+bintray.user=USERNAME
+bintray.key=APIKEY
+```
+
+Creating a release on jcenter is done by invoking the binaryUpload task. Note that you'll need to be a member of the appium organization on jcenter before publishing. Existing members are able to invite new ones.
+
+Update the version number in `build.gradle` by modifying the value of `ddVersion`. Official releases should be made only after removing the `-SNAPSHOT` suffix. If the same version number is used as an existing release of droiddriver then jcenter will reject the upload.
+
+`gradle clean bintrayUpload`