@@ -7,15 +7,13 @@ data class DependencySet(val group: String, val version: String, val modules: Li
77val dependencyVersions = hashMapOf<String , String >()
88rootProject.extra[" versions" ] = dependencyVersions
99
10- val otelInstrumentationVersion = " 2.10.0-alpha"
11-
1210val DEPENDENCY_BOMS = listOf (
1311 " com.fasterxml.jackson:jackson-bom:2.18.2" ,
1412 " com.google.guava:guava-bom:33.3.1-jre" ,
1513 " com.linecorp.armeria:armeria-bom:1.31.2" ,
1614 " org.junit:junit-bom:5.11.3" ,
1715 " io.grpc:grpc-bom:1.68.2" ,
18- " io.opentelemetry.instrumentation :opentelemetry-instrumentation- bom-alpha:${otelInstrumentationVersion} " ,
16+ " io.opentelemetry:opentelemetry-bom-alpha:1.44.1-alpha " ,
1917 " org.testcontainers:testcontainers-bom:1.20.4"
2018)
2119
@@ -78,12 +76,6 @@ javaPlatform {
7876
7977dependencies {
8078 for (bom in DEPENDENCY_BOMS ) {
81- // this is needed until io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha
82- // is updated to contain the latest version of opentelemetry-semconv
83- if (bom.equals(" io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:${otelInstrumentationVersion} " )) {
84- api(platform(bom))
85- continue
86- }
8779 api(enforcedPlatform(bom))
8880 val split = bom.split(' :' )
8981 dependencyVersions[split[0 ]] = split[2 ]
0 commit comments