| import org.robolectric.gradle.DeployedRoboJavaModulePlugin |
| import org.robolectric.gradle.RoboJavaModulePlugin |
| |
| apply plugin: RoboJavaModulePlugin |
| apply plugin: DeployedRoboJavaModulePlugin |
| |
| dependencies { |
| api project(":annotations") |
| api project(":pluginapi") |
| api "javax.inject:javax.inject:1" |
| api "javax.annotation:javax.annotation-api:1.3.2" |
| |
| // For @VisibleForTesting and ByteStreams |
| implementation "com.google.guava:guava:27.0.1-jre" |
| compileOnly "com.google.code.findbugs:jsr305:3.0.2" |
| |
| testCompileOnly "com.google.auto.service:auto-service-annotations:1.0-rc6" |
| testAnnotationProcessor "com.google.auto.service:auto-service:1.0-rc6" |
| testAnnotationProcessor "com.google.errorprone:error_prone_core:$errorproneVersion" |
| |
| testImplementation "junit:junit:4.13.1" |
| testImplementation "com.google.truth:truth:${truthVersion}" |
| testImplementation "org.mockito:mockito-core:2.5.4" |
| } |