Skip to content
Merged
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
4 changes: 3 additions & 1 deletion dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ javaPlatform {

dependencies {
for (bom in DEPENDENCY_BOMS) {
api(enforcedPlatform(bom))
// using enforcedPlatform prevents us from using a newer version
// of azure-monitor-opentelemetry-autoconfigure than is present in the azure SDK BOM
api(platform(bom))
val split = bom.split(':')
dependencyVersions[split[0]] = split[2]
}
Expand Down