Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelpasterz committed Sep 17, 2020
1 parent 07bc866 commit f4130db
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions test_runner/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -252,24 +252,14 @@ dependencies {
implementation(Dependencies.JANSI)
}

// Fix Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.hash.Hashing.crc32c()Lcom/google/common/hash/HashFunction;
// https://stackoverflow.com/a/45286710
configurations.all {
resolutionStrategy {
force("com.google.guava:guava:25.1-jre")
force(Libs.KOTLIN_REFLECT)
exclude(group = "com.google.guava", module = "guava-jdk5")
}
}

buildscript {
repositories {
mavenLocal()
jcenter()
google()
}
dependencies {
classpath(Libs.PROGUARD)
classpath(Dependencies.PROGUARD)
}
}

Expand Down

0 comments on commit f4130db

Please sign in to comment.