• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
10    api project(":annotations")
11    api project(":utils")
12    testImplementation "junit:junit:${junitVersion}"
13    testImplementation "com.google.truth:truth:${truthVersion}"
14    testImplementation "org.mockito:mockito-core:${mockitoVersion}"
15}