aboutsummaryrefslogtreecommitdiff
path: root/palette/build.gradle
blob: dfca475a8e72c4a56760c47e875177f3991b64c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions

plugins {
    id("SupportAndroidLibraryPlugin")
}

dependencies {
    api(project(":core"))
    api(project(":legacy-support-core-utils"))

    annotationProcessor(NULLAWAY)

    androidTestImplementation(TEST_RUNNER)
}

supportLibrary {
    name = "Android Support Palette v7"
    publish = true
    mavenVersion = LibraryVersions.SUPPORT_LIBRARY
    mavenGroup = LibraryGroups.PALETTE
    inceptionYear = "2014"
    description = "Android Support Palette v7"
}