build.gradle revision b63b3abc571efeeacf9ffe38ad344c1d3b1db195
1/*
2 * Copyright (C) 2016 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
17import android.support.LibraryGroups
18import android.support.LibraryVersions
19import android.support.SupportLibraryExtension
20
21plugins {
22    id("SupportAndroidLibraryPlugin")
23}
24
25dependencies {
26    api libs.support.annotations
27    api(project(":persistence:db"))
28}
29
30supportLibrary {
31    name = "Android Support SQLite - Framework Implementation"
32    publish = true
33    mavenVersion = LibraryVersions.ROOM
34    mavenGroup = LibraryGroups.PERSISTENCE
35    inceptionYear = "2017"
36    description = "The implementation of Support SQLite library using the framework code."
37    url = SupportLibraryExtension.ARCHITECTURE_URL
38}