We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fee9b7 commit 093b210Copy full SHA for 093b210
bom-alpha/build.gradle.kts
@@ -6,4 +6,12 @@ description = "OpenTelemetry Bill of Materials (Alpha)"
6
group = "io.opentelemetry"
7
base.archivesName.set("opentelemetry-bom-alpha")
8
9
-otelBom.projectFilter.set { it.findProperty("otel.release") == "alpha" }
+otelBom.projectFilter.set { it.findProperty("otel.release") == "alpha" }
10
+
11
+// Required to place dependency on opentelemetry-bom
12
+javaPlatform.allowDependencies()
13
14
+dependencies {
15
+ // Add dependency on opentelemetry-bom to ensure synchronization between alpha and stable artifacts
16
+ api(platform(project(":bom")))
17
+}
0 commit comments