1import org.robolectric.gradle.RoboJavaModulePlugin 2 3apply plugin: RoboJavaModulePlugin 4 5dependencies { 6 api project(":robolectric") 7 api "junit:junit:${junitVersion}" 8 compileOnly AndroidSdk.MAX_SDK.coordinates 9 10 testRuntimeOnly AndroidSdk.MAX_SDK.coordinates 11 testImplementation "com.google.truth:truth:${truthVersion}" 12 testImplementation "org.conscrypt:conscrypt-openjdk-uber:2.4.0" 13 testImplementation "com.squareup.okhttp3:okhttp" 14 testImplementation platform("com.squareup.okhttp3:okhttp-bom:4.10.0") 15} 16