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' 17 18android { 19 compileSdkVersion dataBindingConfig.compileSdkVersion 20 buildToolsVersion dataBindingConfig.buildToolsVersion 21 22 defaultConfig { 23 minSdkVersion 7 24 targetSdkVersion 21 25 versionCode 1 26 versionName "1.0" 27 } 28 dataBinding { 29 enabled = true 30 } 31 buildTypes { 32 release { 33 minifyEnabled false 34 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 35 } 36 } 37 38 packagingOptions { 39 exclude 'META-INF/services/javax.annotation.processing.Processor' 40 exclude 'META-INF/LICENSE.txt' 41 exclude 'META-INF/NOTICE.txt' 42 } 43} 44 45dependencies { 46 compile fileTree(dir: 'libs', include: ['*.jar']) 47} 48 49uploadArchives { 50 repositories { 51 mavenDeployer { 52 repository(url: "file://${dataBindingConfig.mavenRepoDir}") 53 pom.artifactId = 'independent-library' 54 pom.version = dataBindingConfig.version 55 pom.groupId = dataBindingConfig.testGroup 56 } 57 } 58} 59 60connectedCheck.dependsOn uploadArchives