diff options
-rw-r--r-- | openpgp-api/build.gradle | 15 |
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() + } +} |