aboutsummaryrefslogtreecommitdiff
path: root/integration_tests/mockito/build.gradle
blob: 878cfc3d6f2cb57489d6a44150ea678be209315e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
plugins {
    id "net.ltgt.errorprone" version "0.0.11"
}

apply plugin: RoboJavaModulePlugin

dependencies {
    compile project(":robolectric")
    compile "junit:junit:4.12"
    compileOnly AndroidSdk.MAX_SDK.coordinates
    compile "com.android.support:support-compat:26.0.1"
    compile "com.android.support:support-fragment:26.0.1"

    // Testing dependencies
    testRuntime AndroidSdk.MAX_SDK.coordinates
    testCompile "com.android.support:support-compat:26.0.1"
    testCompile "com.android.support:support-fragment:26.0.1"
    testCompile "org.assertj:assertj-core:3.8.0"
    testCompile "org.mockito:mockito-core:2.5.4"
}