blob: 99d3cc935714cad99b2f08f84471025139bdc576 [file] [log] [blame]
Yigit Boyara64756a12017-03-20 17:26:17 -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 Liutikasbb85fac2017-08-24 13:32:28 -070016
Aurimas Liutikas526389b2018-02-27 14:01:24 -080017import static androidx.build.dependencies.DependenciesKt.*
18import androidx.build.LibraryGroups
19import androidx.build.LibraryVersions
20import androidx.build.SupportLibraryExtension
Aurimas Liutikasbb85fac2017-08-24 13:32:28 -070021
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070022plugins {
23 id("SupportAndroidLibraryPlugin")
24}
Yigit Boyara64756a12017-03-20 17:26:17 -070025
Yigit Boyara64756a12017-03-20 17:26:17 -070026dependencies {
Alan Viverette6c563342018-03-08 18:02:39 -050027 api(project(":room:room-common"))
28 api(project(":room:room-runtime"))
Daniel Santiago Riverae950d9c2019-02-28 11:42:09 -080029 api(ANDROIDX_SQLITE)
30 api(ANDROIDX_SQLITE_FRAMEWORK)
Alan Viverette6c563342018-03-08 18:02:39 -050031 api(project(":room:room-migration"))
Daniel Santiago Riverae950d9c2019-02-28 11:42:09 -080032 implementation(ARCH_CORE_RUNTIME)
Aurimas Liutikas62d3e1d2017-11-28 15:28:01 -080033 api(SUPPORT_CORE_UTILS, libs.support_exclude_config)
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080034 api(JUNIT)
Yigit Boyara64756a12017-03-20 17:26:17 -070035}
36
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070037androidx {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080038 name = "Android Room Testing"
39 publish = true
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080040 mavenVersion = LibraryVersions.ROOM
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070041 mavenGroup = LibraryGroups.ROOM
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080042 inceptionYear = "2017"
43 description = "Android Room Testing"
44 url = SupportLibraryExtension.ARCHITECTURE_URL
Aurimas Liutikasbb85fac2017-08-24 13:32:28 -070045}