1import static androidx.build.dependencies.DependenciesKt.* 2import androidx.build.LibraryGroups 3import androidx.build.LibraryVersions 4 5plugins { 6 id("SupportAndroidLibraryPlugin") 7} 8 9dependencies { 10 api(project(":annotation")) 11 api(project(":core")) 12 api(project(":customview")) 13 14 androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso) 15 androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso) 16 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker 17 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker 18} 19 20supportLibrary { 21 name = "Android Support Library View Pager" 22 publish = true 23 mavenVersion = LibraryVersions.SUPPORT_LIBRARY 24 mavenGroup = LibraryGroups.VIEWPAGER 25 inceptionYear = "2018" 26 description = "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later." 27 failOnDeprecationWarnings = false 28} 29