aboutsummaryrefslogtreecommitdiff
path: root/integration_tests
diff options
context:
space:
mode:
authorBrett Chabot <brettchabot@google.com>2017-08-29 13:44:13 -0700
committerChristian Williams <christianw@google.com>2017-10-03 13:33:31 -0700
commite29c8769f1fb5188107a48b1ea6be3336112137f (patch)
tree6e55d7ad2b2054df7d9e6d5b7ce53a02039fc426 /integration_tests
parent016eb31d1cc4651cb3178a5f3b60ddd1efce5521 (diff)
downloadrobolectric-shadows-e29c8769f1fb5188107a48b1ea6be3336112137f.tar.gz
revert errorprone
Diffstat (limited to 'integration_tests')
-rw-r--r--integration_tests/mockito/build.gradle25
1 files changed, 15 insertions, 10 deletions
diff --git a/integration_tests/mockito/build.gradle b/integration_tests/mockito/build.gradle
index 878cfc3d6..393c42068 100644
--- a/integration_tests/mockito/build.gradle
+++ b/integration_tests/mockito/build.gradle
@@ -2,19 +2,24 @@ plugins {
id "net.ltgt.errorprone" version "0.0.11"
}
-apply plugin: RoboJavaModulePlugin
+//apply plugin: RoboJavaModulePlugin
+
+android {
+ compileSdkVersion 26
+ buildToolsVersion '26.0.1'
+}
dependencies {
- compile project(":robolectric")
- compile "junit:junit:4.12"
+ implementation project(":robolectric")
+ implementation "junit:junit:4.12"
compileOnly AndroidSdk.MAX_SDK.coordinates
- compile "com.android.support:support-compat:26.0.1"
- compile "com.android.support:support-fragment:26.0.1"
+ implementation "com.android.support:support-compat:26.0.1"
+ implementation "com.android.support:support-fragment:26.0.1"
// Testing dependencies
- testRuntime AndroidSdk.MAX_SDK.coordinates
- testCompile "com.android.support:support-compat:26.0.1"
- testCompile "com.android.support:support-fragment:26.0.1"
- testCompile "org.assertj:assertj-core:3.8.0"
- testCompile "org.mockito:mockito-core:2.5.4"
+ //testRuntime AndroidSdk.MAX_SDK.coordinates
+ testImplementation "com.android.support:support-compat:26.0.1"
+ testImplementation "com.android.support:support-fragment:26.0.1"
+ testImplementation "org.assertj:assertj-core:3.8.0"
+ testImplementation "org.mockito:mockito-core:2.5.4"
} \ No newline at end of file