aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhsm <hsm@lamia.panaceas.james.local>2016-05-29 04:23:09 +0100
committerhsm <hsm@lamia.panaceas.james.local>2016-05-29 04:23:09 +0100
commit804b35790d0cca404c341eee016b5a3b1bc11230 (patch)
tree4f2963d079f9a91681dfbd303f70519581e971b9
parent477ffaa46814005d0c7ac23965adc51b73d7f6a3 (diff)
downloadopenpgp-api-master.tar.gz
openpgp-api-master.tar.bz2
openpgp-api-master.zip
local build changesHEADmaster
-rw-r--r--openpgp-api/build.gradle15
1 files changed, 12 insertions, 3 deletions
diff --git a/openpgp-api/build.gradle b/openpgp-api/build.gradle
index 7896d22..750d6ea 100644
--- a/openpgp-api/build.gradle
+++ b/openpgp-api/build.gradle
@@ -1,13 +1,16 @@
apply plugin: 'com.android.library'
apply plugin: 'bintray-release' // must be applied after your artifact generating plugin (eg. java / com.android.library)
+group = 'org.sufficientlysecure'
+version = '11.0-JMM'
+
android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
defaultConfig {
versionCode 9
- versionName '11.0' // API-Version . minor
+ versionName '11.0-JMM' // API-Version . minor
minSdkVersion 9
targetSdkVersion 23
}
@@ -22,7 +25,13 @@ publish {
userOrg = 'sufficientlysecure'
groupId = 'org.sufficientlysecure'
artifactId = 'openpgp-api'
- version = '11.0'
+ version = '11.0-JMM'
description = 'The OpenPGP API provides methods to execute OpenPGP operations, such as sign, encrypt, decrypt, verify, and more without user interaction from background threads.'
website = 'https://github.com/open-keychain/openpgp-api'
-} \ No newline at end of file
+}
+
+uploadArchives {
+ repositories {
+ mavenLocal()
+ }
+}