Skip to content

Commit 083724a

Browse files
authored
Rename gradle property (#3903)
1 parent be952cc commit 083724a

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

agent/runtime-attach/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ plugins {
66
base.archivesName.set("applicationinsights-runtime-attach")
77

88
val otelContribAlphaVersion: String by project
9-
val otelVersion: String by project
109
val agent: Configuration by configurations.creating
1110

1211
dependencies {

dependencyManagement/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ data class DependencySet(val group: String, val version: String, val modules: Li
1111
val dependencyVersions = hashMapOf<String, String>()
1212
rootProject.extra["versions"] = dependencyVersions
1313

14-
val otelVersion = "1.42.1"
14+
val otelSdkVersion = "1.42.1"
1515
val otelInstrumentationAlphaVersion = "2.8.0-alpha"
1616
val otelInstrumentationVersion = "2.8.0"
1717
val byteBuddyVersion = "1.14.11"
1818

19-
rootProject.extra["otelVersion"] = otelVersion
19+
rootProject.extra["otelSdkVersion"] = otelSdkVersion
2020
rootProject.extra["otelInstrumentationVersion"] = otelInstrumentationVersion
2121
rootProject.extra["otelInstrumentationAlphaVersion"] = otelInstrumentationAlphaVersion
2222

2323
val DEPENDENCY_BOMS = listOf(
2424
"com.fasterxml.jackson:jackson-bom:2.17.2",
25-
"io.opentelemetry:opentelemetry-bom:${otelVersion}",
26-
"io.opentelemetry:opentelemetry-bom-alpha:${otelVersion}-alpha",
25+
"io.opentelemetry:opentelemetry-bom:${otelSdkVersion}",
26+
"io.opentelemetry:opentelemetry-bom-alpha:${otelSdkVersion}-alpha",
2727
"io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:${otelInstrumentationVersion}",
2828
"io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:${otelInstrumentationAlphaVersion}",
2929
"com.azure:azure-sdk-bom:1.2.28",

0 commit comments

Comments
 (0)