1import org.robolectric.gradle.DeployedRoboJavaModulePlugin 2import org.robolectric.gradle.RoboJavaModulePlugin 3 4apply plugin: RoboJavaModulePlugin 5apply plugin: DeployedRoboJavaModulePlugin 6 7dependencies { 8 compileOnly 'com.google.code.findbugs:jsr305:3.0.2' 9 api project(":annotations") 10 api "com.google.guava:guava:$guavaJREVersion" 11 12 testImplementation "junit:junit:${junitVersion}" 13 testImplementation "com.google.truth:truth:${truthVersion}" 14 testImplementation "org.mockito:mockito-core:${mockitoVersion}" 15} 16