blob: b467e4829b4901b3d3381c52381e5e03d42050b8 [file] [log] [blame]
Steve McKay63d28462017-10-05 08:53:42 -07001/*
2 * Copyright 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.*
18import androidx.build.LibraryGroups
19import androidx.build.LibraryVersions
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080020
Steve McKay63d28462017-10-05 08:53:42 -070021plugins {
22 id("SupportAndroidLibraryPlugin")
23}
24
25dependencies {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080026 api(project(":recyclerview"))
27 api(project(":annotation"))
28 api(project(":core"))
Steve McKay63d28462017-10-05 08:53:42 -070029
Filip Pavlisa8792942018-03-08 21:01:59 +000030 androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
31 androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso)
Steve McKay7fb76352017-11-17 11:21:15 -080032 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it's own MockMaker
33 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it's own MockMaker
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080034 androidTestImplementation(JUNIT)
Steve McKay63d28462017-10-05 08:53:42 -070035}
36
Steve McKay63d28462017-10-05 08:53:42 -070037supportLibrary {
Aurimas Liutikase338c362018-02-16 15:38:12 -080038 name = "Android RecyclerView Selection"
Aurimas Liutikas2a32c7e2018-03-02 11:19:14 -080039 publish = true
Steve McKay7fb76352017-11-17 11:21:15 -080040 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikase62d7442018-03-13 18:08:13 -070041 mavenGroup = LibraryGroups.RECYCLERVIEW
Aurimas Liutikase338c362018-02-16 15:38:12 -080042 inceptionYear = "2017"
43 description = "Library providing item selection framework for RecyclerView. Support for touch based and band selection is provided."
Steve McKay63d28462017-10-05 08:53:42 -070044}