blob: 73693c15ddf5571104ad8aa88b8999aa8d3c6d05 [file] [log] [blame]
Jakub Gielzak86c892d2017-12-05 15:00:46 +00001/*
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 Liutikas17de2022018-04-27 16:07:52 -070017import static androidx.build.dependencies.DependenciesKt.*
Aurimas Liutikas526389b2018-02-27 14:01:24 -080018import androidx.build.LibraryGroups
19import androidx.build.LibraryVersions
Jakub Gielzak86c892d2017-12-05 15:00:46 +000020
21plugins {
22 id("SupportAndroidLibraryPlugin")
23}
24
25dependencies {
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080026 api(project(":fragment"))
27 api(project(":recyclerview"))
Jakub Gielzak86c892d2017-12-05 15:00:46 +000028
Aurimas Liutikas17de2022018-04-27 16:07:52 -070029 androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso)
30 androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso)
Jakub Gielzak128cfb22018-04-27 15:13:29 +010031 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
32 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
Aurimas Liutikas17de2022018-04-27 16:07:52 -070033 androidTestImplementation project(':internal-testutils'), {
34 exclude group: 'androidx.viewpager2', module: 'viewpager2'
35 }
36}
37
38android {
39 defaultConfig {
40 minSdkVersion 14
Jakub Gielzak86c892d2017-12-05 15:00:46 +000041 }
42}
43
44supportLibrary {
45 name = "AndroidX Widget ViewPager2"
Alan Viverette4d8b0fb2018-03-02 13:26:55 -050046 publish = false
Jakub Gielzak86c892d2017-12-05 15:00:46 +000047 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikasac5fe7c2018-03-06 14:40:53 -080048 mavenGroup = LibraryGroups.VIEWPAGER2
Jakub Gielzak86c892d2017-12-05 15:00:46 +000049 inceptionYear = "2017"
50 description = "AndroidX Widget ViewPager2"
Alan Viverettebf0ea1d2018-02-06 15:42:25 -050051}