blob: ef2b7b79d049c7d731ea22408a4da216e2e1e983 [file] [log] [blame]
Tyson Henningf1ae0062018-01-31 16:31:10 -08001/*
2 * Copyright (C) 2018 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 Liutikas75e93a02019-05-28 16:31:38 -070017import androidx.build.Publish
Tyson Henningf1ae0062018-01-31 16:31:10 -080018
19plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +010020 id("AndroidXPlugin")
21 id("com.android.library")
Tyson Henningf1ae0062018-01-31 16:31:10 -080022}
23
24dependencies {
Alan Viverette6c563342018-03-08 18:02:39 -050025 api(project(":room:room-common"))
Oussama Ben Abdelbaki1d227a12018-11-21 08:09:55 -050026 api(project(":room:room-runtime")) {
Jim Sproch9e38b4f2021-01-06 14:21:06 -080027 exclude group: "com.google.guava", module: "listenablefuture"
Oussama Ben Abdelbaki1d227a12018-11-21 08:09:55 -050028 }
Ian Lake005a9202019-09-26 16:17:25 -070029 implementation("androidx.arch.core:core-runtime:2.0.1")
Ian Lakec631e6202019-09-26 15:41:02 -070030 api("androidx.annotation:annotation:1.0.0")
Ian Lakeae48ec22019-09-26 15:57:41 -070031 implementation("androidx.concurrent:concurrent-futures:1.0.0")
Aurimas Liutikas1a0e7b12021-05-04 12:55:40 -070032 androidTestImplementation(libs.testRunner)
33 androidTestImplementation(libs.truth)
Tyson Henningf1ae0062018-01-31 16:31:10 -080034}
35
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070036androidx {
Tyson Henningf1ae0062018-01-31 16:31:10 -080037 name = "Android Room Guava"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070038 publish = Publish.SNAPSHOT_AND_RELEASE
Tyson Henningf1ae0062018-01-31 16:31:10 -080039 inceptionYear = "2018"
40 description = "Android Room Guava"
Alex Saveaub50d5002020-07-14 05:25:54 +000041}
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070042
43android {
44 namespace "androidx.room.guava"
45}