File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed
sentry-samples-spring-boot-jakarta-opentelemetry-noagent
sentry-samples-spring-boot-jakarta-opentelemetry
sentry-samples-spring-boot-opentelemetry-noagent Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,7 @@ object Config {
170170 val otelJavaAgentTooling = " io.opentelemetry.javaagent:opentelemetry-javaagent-tooling:$otelInstrumentationAlphaVersion "
171171 val otelExtensionAutoconfigureSpi = " io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:$otelVersion "
172172 val otelExtensionAutoconfigure = " io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:$otelVersion "
173+ val otelInstrumentationBom = " io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:$otelInstrumentationVersion "
173174 }
174175 }
175176
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ dependencies {
7171
7272dependencyManagement {
7373 imports {
74- mavenBom(" io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.7.0 " )
74+ mavenBom(Config . Libs . OpenTelemetry .otelInstrumentationBom )
7575 }
7676}
7777
Original file line number Diff line number Diff line change @@ -68,12 +68,6 @@ dependencies {
6868 testImplementation(Config .Libs .apolloKotlin)
6969}
7070
71- dependencyManagement {
72- imports {
73- mavenBom(" io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.7.0" )
74- }
75- }
76-
7771configure<SourceSetContainer > {
7872 test {
7973 java.srcDir(" src/test/java" )
Original file line number Diff line number Diff line change @@ -70,6 +70,12 @@ dependencies {
7070 testImplementation(" org.apache.httpcomponents:httpclient" )
7171}
7272
73+ dependencyManagement {
74+ imports {
75+ mavenBom(Config .Libs .OpenTelemetry .otelInstrumentationBom)
76+ }
77+ }
78+
7379configure<SourceSetContainer > {
7480 test {
7581 java.srcDir(" src/test/java" )
You can’t perform that action at this time.
0 commit comments