Skip to content

Commit

Permalink
Some more versioning cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
TacoTheDank committed Jun 5, 2022
1 parent 8875d30 commit 3633e95
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ AUTO_SERVICE_VERSION=1.0-rc3
DAGGER_VERSION=2.15
ERROR_PRONE_PLUGIN_VERSION=0.0.13
ERROR_PRONE_VERSION=2.3.1
GUAVA_TESTLIB_VERSION=18.0
GUAVA_VERSION=28.1-android
JAVAPOET_VERSION=1.9.0
JSR_305_VERSION=3.0.2
Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {

testImplementation "androidx.appcompat:appcompat:${ANDROID_X_APPCOMPAT_VERSION}"
testImplementation project(':testutil')
testImplementation 'com.google.guava:guava-testlib:18.0'
testImplementation "com.google.guava:guava-testlib:${GUAVA_TESTLIB_VERSION}"
testImplementation "com.google.truth:truth:${TRUTH_VERSION}"
testImplementation "junit:junit:${JUNIT_VERSION}"
testImplementation "org.mockito:mockito-core:${MOCKITO_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion library/test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {
testImplementation project(':library')
testImplementation project(':mocks')
testImplementation project(':testutil')
testImplementation 'com.google.guava:guava-testlib:18.0'
testImplementation "com.google.guava:guava-testlib:${GUAVA_TESTLIB_VERSION}"
testImplementation "com.google.truth:truth:${TRUTH_VERSION}"
testImplementation "junit:junit:${JUNIT_VERSION}"
testImplementation "org.mockito:mockito-core:${MOCKITO_VERSION}"
Expand Down
7 changes: 1 addition & 6 deletions third_party/disklrucache/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
apply plugin: 'com.android.library'

repositories {
jcenter()
}

checkstyle {
toolVersion = "6.6"
}
Expand All @@ -13,8 +9,7 @@ checkstyle {
}

dependencies {
def junitVersion = hasProperty('JUNIT_VERSION') ? JUNIT_VERSION : '4.13.2';
testImplementation "junit:junit:${junitVersion}"
testImplementation "junit:junit:${JUNIT_VERSION}"
testImplementation "com.google.truth:truth:${TRUTH_VERSION}"
}

Expand Down

0 comments on commit 3633e95

Please sign in to comment.