aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2015-03-02 18:20:16 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2015-03-02 18:20:16 +0100
commitab17ae851218cfb5e98ab69dc7e55cd30b14faa3 (patch)
treedd2ab3066d7da8319b2033d7a792c4240b2bc1ab /build.gradle
parentc866dc22bcfa004ec2c46bc86c08694e76d1058d (diff)
downloadopenpgp-api-ab17ae851218cfb5e98ab69dc7e55cd30b14faa3.tar.gz
openpgp-api-ab17ae851218cfb5e98ab69dc7e55cd30b14faa3.tar.bz2
openpgp-api-ab17ae851218cfb5e98ab69dc7e55cd30b14faa3.zip
jcenter preperations
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle21
1 files changed, 19 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 8561346..59b1086 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,22 +1,39 @@
-// please leave this here, so this library builds on its own
buildscript {
repositories {
- mavenCentral()
+ jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
+ classpath 'com.novoda:bintray-release:0.2.7'
}
}
apply plugin: 'com.android.library'
+apply plugin: 'bintray-release'
android {
compileSdkVersion 21
buildToolsVersion '21.1.2'
+ defaultConfig {
+ versionCode 1
+ versionName '6.0' // API-Version . minor
+ minSdkVersion 9
+ targetSdkVersion 21
+ }
+
// Do not abort build if lint finds errors
lintOptions {
abortOnError false
}
}
+
+publish {
+ userOrg = 'dschuermann'
+ groupId = 'org.openintents.openpgp'
+ artifactId = 'openpgp-api'
+ version = '6.0'
+ 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 = 'http://www.openkeychain.org/'
+} \ No newline at end of file