blob: a3b06ddc6278197faa30adf27b80665a1132085e [file] [log] [blame]
Aurimas Liutikasbb85fac2017-08-24 13:32:28 -07001/*
2 * Copyright (C) 2017 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
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Aurimas Liutikasb938b2e2017-07-24 14:47:17 -070016
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070017import android.support.LibraryGroups
Aurimas Liutikasbb85fac2017-08-24 13:32:28 -070018import android.support.LibraryVersions;
19import android.support.SupportLibraryExtension;
Yigit Boyarb18b96e2016-10-25 13:54:51 -070020
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070021plugins {
22 id("SupportJavaLibraryPlugin")
23}
Yigit Boyarb18b96e2016-10-25 13:54:51 -070024
25dependencies {
Yigit Boyar450ed382017-03-02 09:48:25 -080026 testCompile libs.junit
27 testCompile libs.mockito_core
28 compile libs.support.annotations
Yigit Boyarb18b96e2016-10-25 13:54:51 -070029}
Sergey Vasilinets0265f0f2016-10-28 09:40:11 -070030
Yigit Boyar450ed382017-03-02 09:48:25 -080031createAndroidCheckstyle(project)
Aurimas Liutikasbb85fac2017-08-24 13:32:28 -070032
33supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080034 name = "Android Lifecycle-Common"
35 publish = true
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080036 mavenVersion = LibraryVersions.LIFECYCLES_CORE
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070037 mavenGroup = LibraryGroups.LIFECYCLE
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080038 inceptionYear = "2017"
39 description = "Android Lifecycle-Common"
40 url = SupportLibraryExtension.ARCHITECTURE_URL
Aurimas Liutikasbb85fac2017-08-24 13:32:28 -070041}