aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2015-05-05 21:46:01 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2015-05-05 21:46:01 +0200
commit76ce94e1abba20232a09c8bdc497ced497b344a3 (patch)
tree188f15afd2221302c2a362c4ddfeddb17e405b1f /build.gradle
parent87dc44e85be2638288966aaa757b369c2ce18c8e (diff)
downloadopenpgp-api-76ce94e1abba20232a09c8bdc497ced497b344a3.tar.gz
openpgp-api-76ce94e1abba20232a09c8bdc497ced497b344a3.tar.bz2
openpgp-api-76ce94e1abba20232a09c8bdc497ced497b344a3.zip
Restructure for jcenter publish
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle32
1 files changed, 4 insertions, 28 deletions
diff --git a/build.gradle b/build.gradle
index ccf15a9..6f563f3 100644
--- a/build.gradle
+++ b/build.gradle
@@ -2,38 +2,14 @@ buildscript {
repositories {
jcenter()
}
-
dependencies {
- classpath 'com.android.tools.build:gradle:1.0.0'
+ classpath 'com.android.tools.build:gradle:1.2.2'
classpath 'com.novoda:bintray-release:0.2.7'
}
}
-apply plugin: 'com.android.library'
-apply plugin: 'bintray-release'
-
-android {
- compileSdkVersion 22
- buildToolsVersion '21.1.2'
-
- defaultConfig {
- versionCode 1
- versionName '7.0' // API-Version . minor
- minSdkVersion 9
- targetSdkVersion 22
- }
-
- // Do not abort build if lint finds errors
- lintOptions {
- abortOnError false
+allprojects {
+ repositories {
+ jcenter()
}
}
-
-publish {
- userOrg = 'sufficientlysecure'
- groupId = 'org.sufficientlysecure'
- artifactId = 'openpgp-api'
- version = '7.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 = 'https://github.com/open-keychain/openpgp-api'
-} \ No newline at end of file