| Tyson Henning | f1ae006 | 2018-01-31 16:31:10 -0800 | [diff] [blame] | 1 | /* |
| 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 Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame] | 17 | import androidx.build.Publish |
| Tyson Henning | f1ae006 | 2018-01-31 16:31:10 -0800 | [diff] [blame] | 18 | |
| 19 | plugins { |
| Aurimas Liutikas | cdb9f9f | 2019-04-08 12:07:49 +0100 | [diff] [blame] | 20 | id("AndroidXPlugin") |
| 21 | id("com.android.library") |
| Tyson Henning | f1ae006 | 2018-01-31 16:31:10 -0800 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | dependencies { |
| Alan Viverette | 6c56334 | 2018-03-08 18:02:39 -0500 | [diff] [blame] | 25 | api(project(":room:room-common")) |
| Oussama Ben Abdelbaki | 1d227a1 | 2018-11-21 08:09:55 -0500 | [diff] [blame] | 26 | api(project(":room:room-runtime")) { |
| Jim Sproch | 9e38b4f | 2021-01-06 14:21:06 -0800 | [diff] [blame] | 27 | exclude group: "com.google.guava", module: "listenablefuture" |
| Oussama Ben Abdelbaki | 1d227a1 | 2018-11-21 08:09:55 -0500 | [diff] [blame] | 28 | } |
| Ian Lake | 005a920 | 2019-09-26 16:17:25 -0700 | [diff] [blame] | 29 | implementation("androidx.arch.core:core-runtime:2.0.1") |
| Ian Lake | c631e620 | 2019-09-26 15:41:02 -0700 | [diff] [blame] | 30 | api("androidx.annotation:annotation:1.0.0") |
| Ian Lake | ae48ec2 | 2019-09-26 15:57:41 -0700 | [diff] [blame] | 31 | implementation("androidx.concurrent:concurrent-futures:1.0.0") |
| Aurimas Liutikas | 1a0e7b1 | 2021-05-04 12:55:40 -0700 | [diff] [blame] | 32 | androidTestImplementation(libs.testRunner) |
| 33 | androidTestImplementation(libs.truth) |
| Tyson Henning | f1ae006 | 2018-01-31 16:31:10 -0800 | [diff] [blame] | 34 | } |
| 35 | |
| Aurimas Liutikas | 2ad3161 | 2019-04-01 04:23:03 -0700 | [diff] [blame] | 36 | androidx { |
| Tyson Henning | f1ae006 | 2018-01-31 16:31:10 -0800 | [diff] [blame] | 37 | name = "Android Room Guava" |
| Aurimas Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame] | 38 | publish = Publish.SNAPSHOT_AND_RELEASE |
| Tyson Henning | f1ae006 | 2018-01-31 16:31:10 -0800 | [diff] [blame] | 39 | inceptionYear = "2018" |
| 40 | description = "Android Room Guava" |
| Alex Saveau | b50d500 | 2020-07-14 05:25:54 +0000 | [diff] [blame] | 41 | } |
| Aurimas Liutikas | dcfa035 | 2022-03-14 16:05:33 -0700 | [diff] [blame] | 42 | |
| 43 | android { |
| 44 | namespace "androidx.room.guava" |
| 45 | } |