blob: 71765ac2569163fb6625759a059180349022e76b [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
Aurimas Liutikasb63ef632019-04-01 04:37:49 -070020import androidx.build.AndroidXExtension
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070021import androidx.build.Publish
Aurimas Liutikasbb85fac2017-08-24 13:32:28 -070022
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070023plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +010024 id("AndroidXPlugin")
25 id("com.android.library")
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070026}
Yigit Boyara64756a12017-03-20 17:26:17 -070027
Yigit Boyara64756a12017-03-20 17:26:17 -070028dependencies {
Alan Viverette6c563342018-03-08 18:02:39 -050029 api(project(":room:room-common"))
30 api(project(":room:room-runtime"))
Ian Lakeae48ec22019-09-26 15:57:41 -070031 api("androidx.sqlite:sqlite:2.0.1")
32 api("androidx.sqlite:sqlite-framework:2.0.1")
Alan Viverette6c563342018-03-08 18:02:39 -050033 api(project(":room:room-migration"))
Ian Lake005a9202019-09-26 16:17:25 -070034 implementation("androidx.arch.core:core-runtime:2.0.1")
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080035 api(JUNIT)
Yigit Boyara64756a12017-03-20 17:26:17 -070036}
37
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070038androidx {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080039 name = "Android Room Testing"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070040 publish = Publish.SNAPSHOT_AND_RELEASE
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"
Alex Saveau865cee42020-07-14 05:25:54 +000044}