Skip to content

Commit db09bc0

Browse files
authored
Merge pull request #561 from Aiven-Open/jeqo/fix-dep-conflicts
fix: dependency conflicts on storage back-ends
2 parents 1bd82c3 + 63dcb12 commit db09bc0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

storage/azure/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,11 @@ dependencies {
2121

2222
implementation platform("com.azure:azure-sdk-bom:$azureSdkVersion")
2323
implementation ("com.azure:azure-identity") {
24+
exclude group: "com.fasterxml.jackson.core"
2425
exclude group: "org.slf4j"
2526
}
2627
implementation ("com.azure:azure-storage-blob") {
28+
exclude group: "com.fasterxml.jackson.core"
2729
exclude group: "org.slf4j"
2830
}
2931

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)