aboutsummaryrefslogtreecommitdiff
path: root/palette/build.gradle
blob: 5f7cc1f9dce4129b740293427efd9e63b14ee0ad (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
26
27
28
29
30
31
32
33
34
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions

plugins {
    id("AndroidXPlugin")
    id("com.android.library")
}

android {
    lintOptions {
        fatal("UnknownNullness")
    }
}

dependencies {
    api(project(":core"))
    implementation(project(":collection"))

    annotationProcessor(NULLAWAY)

    androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
    androidTestImplementation(ANDROIDX_TEST_CORE)
    androidTestImplementation(ANDROIDX_TEST_RUNNER)
}

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