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 @@ -87,6 +87,13 @@ dependencies {
8787 testCompileOnly(" com.google.code.findbugs:jsr305" )
8888}
8989
90+ configurations.all {
91+ // waiting for azure-identity to be bumped in the Azure SDK BOM
92+ resolutionStrategy.force(" com.azure:azure-identity:1.15.2" )
93+ // waiting for json-smart:2.5.2 to be available as a transitive dependency of azure:azure-identity
94+ resolutionStrategy.force(" net.minidev:json-smart:2.5.2" )
95+ }
96+
9097configurations {
9198 " implementation" {
9299 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