blob: 7be7400e505d2bb2c1260b2944f5557f14aaaaf4 [file] [log] [blame]
Jason Monk8a452e92017-10-31 19:21:47 -04001/*
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 */
16
Aurimas Liutikas526389b2018-02-27 14:01:24 -080017import static androidx.build.dependencies.DependenciesKt.*
Jason Monkeedc0e32018-01-21 13:44:58 -050018
Aurimas Liutikas526389b2018-02-27 14:01:24 -080019import androidx.build.LibraryGroups
20import androidx.build.LibraryVersions
Jason Monkdb7ed472017-11-14 19:31:23 -050021
Jason Monk8a452e92017-10-31 19:21:47 -040022plugins {
23 id("SupportAndroidLibraryPlugin")
24}
25
26dependencies {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080027 implementation project(":annotation")
28 implementation project(":appcompat")
Jason Monk6fa0c9b2017-12-12 20:55:35 -050029
Filip Pavlisa8792942018-03-08 21:01:59 +000030 androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
Jason Monk731b13d2018-01-11 12:11:22 -050031 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy)
32 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy)
Jason Monk8a452e92017-10-31 19:21:47 -040033}
34
Jason Monk8a452e92017-10-31 19:21:47 -040035supportLibrary {
Aurimas Liutikascdcbdb02017-11-28 15:28:01 -080036 name = "Common utilities for slices"
37 publish = true
Jason Monkdb7ed472017-11-14 19:31:23 -050038 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080039 mavenGroup = LibraryGroups.SLICE
Aurimas Liutikascdcbdb02017-11-28 15:28:01 -080040 inceptionYear = "2017"
41 description = "The slices core library provides utilities for the slices view and provider libraries"
Jason Monk0da0ca32017-12-19 13:17:16 -050042 minSdkVersion = 24
Jason Monk8a452e92017-10-31 19:21:47 -040043}