Skip to content

Commit d83ecc6

Browse files
committed
Bump com.azure:azure-identity to 1.15.2 and json-smart to 2.5.2
1 parent 73ef711 commit d83ecc6

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

agent/agent-tooling/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
9198
configurations {
9299
"implementation" {
93100
exclude(group = "net.bytebuddy", module = "byte-buddy") // we use byte-buddy-dep

agent/agent/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)