Skip to content

Commit d4fc6d8

Browse files
committed
fix: remove conflicting dependencies from gcs
1 parent d5cefe7 commit d4fc6d8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

storage/gcs/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ archivesBaseName = "storage-gcs"
1919
dependencies {
2020
implementation project(":storage:core")
2121

22-
implementation "com.google.cloud:google-cloud-storage:$gcpSdkVersion"
22+
implementation ("com.google.cloud:google-cloud-storage:$gcpSdkVersion") {
23+
exclude group: "com.google.errorprone"
24+
exclude group: "org.checkerframework"
25+
}
26+
2327
implementation project(":commons")
2428

2529
testImplementation(testFixtures(project(":storage:core")))

0 commit comments

Comments
 (0)