blob: 96c0ff302f1fae84533dadfe65e6b9ee99519551 [file] [log] [blame]
Chris Craik51f6bc22018-05-23 18:11:26 -07001/*
2 * Copyright 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
Chris Craik51f6bc22018-05-23 18:11:26 -070017import androidx.build.LibraryGroups
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070018import androidx.build.Publish
Chris Craik51f6bc22018-05-23 18:11:26 -070019
20plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +010021 id("AndroidXPlugin")
22 id("com.android.library")
Chris Craik51f6bc22018-05-23 18:11:26 -070023 id("org.jetbrains.kotlin.android")
24}
25
Chris Craik51f6bc22018-05-23 18:11:26 -070026dependencies {
27 api(project(":paging:paging-runtime"))
28 // Ensure that the -ktx dependency graph mirrors the Java dependency graph
Dustin Lam8f042df2019-05-31 17:58:10 -070029 implementation(project(":paging:paging-common-ktx"))
Chris Craik51f6bc22018-05-23 18:11:26 -070030}
31
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070032androidx {
Chris Craik51f6bc22018-05-23 18:11:26 -070033 name = "Android Paging-Runtime Kotlin Extensions"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070034 publish = Publish.SNAPSHOT_AND_RELEASE
Chris Craik51f6bc22018-05-23 18:11:26 -070035 mavenGroup = LibraryGroups.PAGING
36 inceptionYear = "2018"
37 description = "Kotlin extensions for 'paging-runtime' artifact"
Chris Craik51f6bc22018-05-23 18:11:26 -070038}