aboutsummaryrefslogtreecommitdiffstats
path: root/openpgp-api/build.gradle
blob: 750d6ea749df392de940019c09133b0d5a01ea24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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-JMM' // API-Version . minor
        minSdkVersion 9
        targetSdkVersion 23
    }

    // Do not abort build if lint finds errors
    lintOptions {
        abortOnError false
    }
}

publish {
    userOrg = 'sufficientlysecure'
    groupId = 'org.sufficientlysecure'
    artifactId = 'openpgp-api'
    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'
}

uploadArchives {
    repositories {
	mavenLocal()
    }
}