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 {
8888 testCompileOnly(" com.google.code.findbugs:jsr305" )
8989}
9090
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+
9198configurations {
9299 " implementation" {
93100 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 {
223223 exclude(" com.fasterxml.jackson.dataformat" , " jackson-dataformat-xml" )
224224 exclude(" com.fasterxml.woodstox" , " woodstox-core" )
225225 // 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" )
227229 }
228230}
You can’t perform that action at this time.
0 commit comments