blob: 05b63c97d2a769598653a63b9eeac8633b6087b8 [file] [log] [blame]
Yigit Boyar19b41102016-11-20 10:46:32 -08001/*
2 * Copyright (C) 2016 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 */
16
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080017import static android.support.dependencies.DependenciesKt.*
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070018import android.support.LibraryGroups
Yigit Boyard3829822017-08-25 16:53:25 -070019import android.support.LibraryVersions
Aurimas Liutikasbb85fac2017-08-24 13:32:28 -070020import android.support.SupportLibraryExtension;
Yigit Boyar19b41102016-11-20 10:46:32 -080021
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070022plugins {
23 id("SupportJavaLibraryPlugin")
24}
Yigit Boyar19b41102016-11-20 10:46:32 -080025
26dependencies {
Yigit Boyar450ed382017-03-02 09:48:25 -080027 compile libs.support.annotations
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080028 testCompile(JUNIT)
29 testCompile(MOCKITO_CORE)
Yigit Boyar19b41102016-11-20 10:46:32 -080030}
31
Aurimas Liutikasbb85fac2017-08-24 13:32:28 -070032supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080033 name = "Android Room-Common"
34 publish = true
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080035 mavenVersion = LibraryVersions.ROOM
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070036 mavenGroup = LibraryGroups.ROOM
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080037 inceptionYear = "2017"
38 description = "Android Room-Common"
39 url = SupportLibraryExtension.ARCHITECTURE_URL
Aurimas Liutikasbb85fac2017-08-24 13:32:28 -070040}