build.gradle revision 7d9836f8bd4f2525597b091787d0858784c6c22e
1/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15apply plugin: 'maven'
16apply plugin: 'com.android.library'
17apply plugin: 'com.android.databinding'
18
19android {
20    compileSdkVersion config.compileSdkVersion
21    buildToolsVersion config.buildToolsVersion
22
23    defaultConfig {
24        minSdkVersion 7
25        targetSdkVersion 21
26        versionCode 1
27        versionName "1.0"
28    }
29    buildTypes {
30        release {
31            minifyEnabled false
32            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
33        }
34    }
35
36    packagingOptions {
37        exclude 'META-INF/services/javax.annotation.processing.Processor'
38        exclude 'META-INF/LICENSE.txt'
39        exclude 'META-INF/NOTICE.txt'
40    }
41}
42
43dependencies {
44    compile fileTree(dir: 'libs', include: ['*.jar'])
45}
46
47uploadArchives {
48    repositories {
49        mavenDeployer {
50            repository(url: "file://${config.mavenRepoDir}")
51            pom.artifactId = 'independent-library'
52            pom.version = config.version
53            pom.groupId = config.testGroup
54        }
55    }
56}
57
58connectedCheck.dependsOn uploadArchives