Skip to content

Commit a5468fa

Browse files
Adding opentelemetry-proto as a dependency since opentelemetry-exporter-otlp-common does not bring it in anymore
see: https://github.com/open-telemetry/opentelemetry-java/pull/3520/files#diff-f85836e2d08312e0c8476d041283240c377897d724fe70c65312dda69dcdb5db related: gh-77
1 parent 364ebfb commit a5468fa

File tree

2 files changed

+9
-0
lines changed
  • spring-cloud-sleuth-otel-autoconfigure
  • tests/otel/spring-cloud-sleuth-instrumentation-actuator-tests

2 files changed

+9
-0
lines changed

spring-cloud-sleuth-otel-autoconfigure/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,11 @@
212212
<artifactId>opentelemetry-exporter-otlp-common</artifactId>
213213
<optional>true</optional>
214214
</dependency>
215+
<dependency>
216+
<groupId>io.opentelemetry</groupId>
217+
<artifactId>opentelemetry-proto</artifactId>
218+
<optional>true</optional>
219+
</dependency>
215220

216221
<!-- Zipkin -->
217222
<dependency>

tests/otel/spring-cloud-sleuth-instrumentation-actuator-tests/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@
9595
<groupId>io.opentelemetry</groupId>
9696
<artifactId>opentelemetry-exporter-otlp-common</artifactId>
9797
</dependency>
98+
<dependency>
99+
<groupId>io.opentelemetry</groupId>
100+
<artifactId>opentelemetry-proto</artifactId>
101+
</dependency>
98102
</dependencies>
99103

100104
</project>

0 commit comments

Comments
 (0)