From 5968c8345b9db295adfea6948f43bbbc2b0c4ac8 Mon Sep 17 00:00:00 2001 From: olly Date: Mon, 4 Nov 2019 17:35:04 +0000 Subject: [PATCH] Remove auto-value dependency PiperOrigin-RevId: 278398045 --- library/core/build.gradle | 4 ---- testutils/build.gradle | 2 -- 2 files changed, 6 deletions(-) diff --git a/library/core/build.gradle b/library/core/build.gradle index afccef3e24..33798c0c30 100644 --- a/library/core/build.gradle +++ b/library/core/build.gradle @@ -65,18 +65,14 @@ dependencies { androidTestImplementation 'androidx.test:runner:' + androidxTestVersion androidTestImplementation 'androidx.test.ext:junit:' + androidxTestVersion androidTestImplementation 'com.google.truth:truth:' + truthVersion - androidTestImplementation 'com.google.auto.value:auto-value-annotations:' + autoValueVersion androidTestImplementation 'com.linkedin.dexmaker:dexmaker:' + dexmakerVersion androidTestImplementation 'com.linkedin.dexmaker:dexmaker-mockito:' + dexmakerVersion androidTestImplementation 'org.mockito:mockito-core:' + mockitoVersion - androidTestAnnotationProcessor 'com.google.auto.value:auto-value:' + autoValueVersion testImplementation 'androidx.test:core:' + androidxTestVersion testImplementation 'androidx.test.ext:junit:' + androidxTestVersion testImplementation 'com.google.truth:truth:' + truthVersion testImplementation 'org.mockito:mockito-core:' + mockitoVersion testImplementation 'org.robolectric:robolectric:' + robolectricVersion - testImplementation 'com.google.auto.value:auto-value-annotations:' + autoValueVersion - testAnnotationProcessor 'com.google.auto.value:auto-value:' + autoValueVersion } ext { diff --git a/testutils/build.gradle b/testutils/build.gradle index 3c7b13a6a8..0d6439cf6c 100644 --- a/testutils/build.gradle +++ b/testutils/build.gradle @@ -44,8 +44,6 @@ dependencies { api 'com.google.truth:truth:' + truthVersion implementation 'androidx.annotation:annotation:' + androidxAnnotationVersion implementation project(modulePrefix + 'library-core') - implementation 'com.google.auto.value:auto-value-annotations:' + autoValueVersion - annotationProcessor 'com.google.auto.value:auto-value:' + autoValueVersion testImplementation project(modulePrefix + 'testutils') testImplementation 'org.robolectric:robolectric:' + robolectricVersion }