Skip to content

Commit

Permalink
fix: remove conflicting dependencies from gcs
Browse files Browse the repository at this point in the history
  • Loading branch information
jeqo committed Nov 9, 2023
1 parent f4492d9 commit 9f0914e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion storage/gcs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ archivesBaseName = "storage-gcs"
dependencies {
implementation project(":storage:core")

implementation "com.google.cloud:google-cloud-storage:$gcpSdkVersion"
implementation ("com.google.cloud:google-cloud-storage:$gcpSdkVersion") {
exclude group: "com.google.errorprone"
exclude group: "org.checkerframework"
}

implementation project(":commons")

testImplementation(testFixtures(project(":storage:core")))
Expand Down

0 comments on commit 9f0914e

Please sign in to comment.