aboutsummaryrefslogtreecommitdiff
path: root/core/build.gradle
blob: 812968c27650a40249758f68c694ce54188932d3 (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
android {
    defaultConfig {
        consumerProguardFiles 'consumer-proguard-rules.pro'
    }
}

dependencies {
    implementation "androidx.annotation:annotation:1.0.1"

    testImplementation project(":testing")
    testImplementation "junit:junit:4.12"
    testImplementation "org.hamcrest:hamcrest-library:1.3"
    testImplementation "org.mockito:mockito-core:2.19.0"
    testImplementation "org.robolectric:robolectric:3.4.2"
}

publishing {
    publications {
        library(MavenPublication) {
            artifactId 'volley'
            pom {
                name = 'Volley'
                description = 'An HTTP library that makes networking for Android apps easier and, most importantly, faster.'
            }
            artifact "$buildDir/outputs/aar/core-release.aar"
        }
    }
}