File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,13 @@ dependencies {
88
88
testCompileOnly(" com.google.code.findbugs:jsr305" )
89
89
}
90
90
91
+ configurations.all {
92
+ // waiting for azure-identity to be bumped in the Azure SDK BOM
93
+ resolutionStrategy.force(" com.azure:azure-identity:1.15.2" )
94
+ // waiting for json-smart:2.5.2 to be available as a transitive dependency of azure:azure-identity
95
+ resolutionStrategy.force(" net.minidev:json-smart:2.5.2" )
96
+ }
97
+
91
98
configurations {
92
99
" implementation" {
93
100
exclude(group = " net.bytebuddy" , module = " byte-buddy" ) // we use byte-buddy-dep
Original file line number Diff line number Diff line change @@ -223,6 +223,8 @@ configurations {
223
223
exclude(" com.fasterxml.jackson.dataformat" , " jackson-dataformat-xml" )
224
224
exclude(" com.fasterxml.woodstox" , " woodstox-core" )
225
225
// waiting for azure-identity to be bumped in the Azure SDK BOM
226
- resolutionStrategy.force(" com.azure:azure-identity:1.15.1" )
226
+ resolutionStrategy.force(" com.azure:azure-identity:1.15.2" )
227
+ // waiting for json-smart:2.5.2 to be available as a transitive dependency of azure:azure-identity
228
+ resolutionStrategy.force(" net.minidev:json-smart:2.5.2" )
227
229
}
228
230
}
You can’t perform that action at this time.
0 commit comments