build.gradle revision a6e4583962e19e8e93b4ca3f9fe3d34560b6d96c
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 21
21    buildToolsVersion "21.1.2"
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    compile "com.android.databinding:library:${config.snapshotVersion}"
46    provided "com.android.databinding:annotationprocessor:${config.snapshotVersion}"
47}
48
49uploadArchives {
50    repositories {
51        mavenDeployer {
52            repository(url: "file://${config.mavenRepoDir}")
53            pom.artifactId = 'independent-library'
54            pom.version = config.snapshotVersion
55            pom.groupId = config.testGroup
56        }
57    }
58}
59
60connectedCheck.dependsOn uploadArchives