Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions agent/agent-tooling/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@ dependencies {
testCompileOnly("com.google.code.findbugs:jsr305")
}

configurations.all {
// waiting for azure-identity to be bumped in the Azure SDK BOM
resolutionStrategy.force("com.azure:azure-identity:1.15.2")
// waiting for json-smart:2.5.2 to be available as a transitive dependency of azure:azure-identity
resolutionStrategy.force("net.minidev:json-smart:2.5.2")
}

configurations {
"implementation" {
exclude(group = "net.bytebuddy", module = "byte-buddy") // we use byte-buddy-dep
Expand Down
4 changes: 4 additions & 0 deletions agent/agent/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -222,5 +222,9 @@ configurations {
// excluding unused dependencies for size (~1.8mb)
exclude("com.fasterxml.jackson.dataformat", "jackson-dataformat-xml")
exclude("com.fasterxml.woodstox", "woodstox-core")
// waiting for azure-identity to be bumped in the Azure SDK BOM
resolutionStrategy.force("com.azure:azure-identity:1.15.2")
// waiting for json-smart:2.5.2 to be available as a transitive dependency of azure:azure-identity
resolutionStrategy.force("net.minidev:json-smart:2.5.2")
}
}
8 changes: 4 additions & 4 deletions licenses/more-licenses.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,12 +249,12 @@ _2025-02-18 20:33:04 PST_
> - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1)
> - **Embedded license files**: [jna-platform-5.16.0.jar/META-INF/LICENSE](jna-platform-5.16.0.jar/META-INF/LICENSE)

**50** **Group:** `net.minidev` **Name:** `accessors-smart` **Version:** `2.5.1`
**50** **Group:** `net.minidev` **Name:** `accessors-smart` **Version:** `2.5.2`
> - **Project URL**: [https://urielch.github.io/](https://urielch.github.io/)
> - **Manifest License**: Apache License, Version 2.0 (Not Packaged)
> - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)

**51** **Group:** `net.minidev` **Name:** `json-smart` **Version:** `2.5.1`
**51** **Group:** `net.minidev` **Name:** `json-smart` **Version:** `2.5.2`
> - **Project URL**: [https://urielch.github.io/](https://urielch.github.io/)
> - **Manifest License**: Apache License, Version 2.0 (Not Packaged)
> - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
Expand Down Expand Up @@ -350,7 +350,7 @@ _2025-02-18 20:33:04 PST_
> - **POM Project URL**: [https://github.com/Azure/azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java)
> - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT)

**67** **Group:** `com.azure` **Name:** `azure-identity` **Version:** `1.15.0`
**67** **Group:** `com.azure` **Name:** `azure-identity` **Version:** `1.15.2`
> - **POM Project URL**: [https://github.com/Azure/azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java)
> - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT)

Expand Down Expand Up @@ -382,7 +382,7 @@ _2025-02-18 20:33:04 PST_
> - **Manifest License**: "SPDX-License-Identifier: MIT";link="https://opensource.org/licenses/MIT" (Not Packaged)
> - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT)

**75** **Group:** `com.microsoft.azure` **Name:** `msal4j` **Version:** `1.17.2`
**75** **Group:** `com.microsoft.azure` **Name:** `msal4j` **Version:** `1.19.0`
> - **Project URL**: [https://github.com/AzureAD/microsoft-authentication-library-for-java](https://github.com/AzureAD/microsoft-authentication-library-for-java)
> - **Manifest License**: "MIT License" (Not Packaged)
> - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT)
Expand Down
Loading