1plugins {
2    id "net.ltgt.errorprone" version "0.0.13"
3}
4
5apply plugin: RoboJavaModulePlugin
6
7dependencies {
8    compile project(":robolectric")
9    compile "junit:junit:4.12"
10    compile("com.android.support.test:monitor:1.0.2-alpha1")
11    compileOnly AndroidSdk.MAX_SDK.coordinates
12
13    // Testing dependencies
14    testRuntime AndroidSdk.MAX_SDK.coordinates
15    testCompile("com.android.support.test:runner:1.0.2-alpha1")
16    testCompile("com.android.support.test:rules:1.0.2-alpha1")
17    testCompile "com.google.truth:truth:0.36"
18}
19