We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd26eb2 commit ff59550Copy full SHA for ff59550
dependencyManagement/build.gradle.kts
@@ -84,7 +84,9 @@ javaPlatform {
84
85
dependencies {
86
for (bom in DEPENDENCY_BOMS) {
87
- api(enforcedPlatform(bom))
+ // using enforcedPlatform prevents us from using a newer version
88
+ // of azure-monitor-opentelemetry-autoconfigure than is present in the azure SDK BOM
89
+ api(platform(bom))
90
val split = bom.split(':')
91
dependencyVersions[split[0]] = split[2]
92
}
0 commit comments