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 e0cbfc9 commit 9ed1690Copy full SHA for 9ed1690
dependencyManagement/build.gradle.kts
@@ -76,6 +76,12 @@ javaPlatform {
76
77
dependencies {
78
for (bom in DEPENDENCY_BOMS) {
79
+ // this is needed until io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha
80
+ // is updated to contain the latest version of opentelemetry-semconv
81
+ if (bom.equals("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:${otelInstrumentationVersion}")) {
82
+ api(platform(bom))
83
+ continue
84
+ }
85
api(enforcedPlatform(bom))
86
val split = bom.split(':')
87
dependencyVersions[split[0]] = split[2]
0 commit comments