We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5cefe7 commit d4fc6d8Copy full SHA for d4fc6d8
storage/gcs/build.gradle
@@ -19,7 +19,11 @@ archivesBaseName = "storage-gcs"
19
dependencies {
20
implementation project(":storage:core")
21
22
- implementation "com.google.cloud:google-cloud-storage:$gcpSdkVersion"
+ implementation ("com.google.cloud:google-cloud-storage:$gcpSdkVersion") {
23
+ exclude group: "com.google.errorprone"
24
+ exclude group: "org.checkerframework"
25
+ }
26
+
27
implementation project(":commons")
28
29
testImplementation(testFixtures(project(":storage:core")))
0 commit comments