Skip to content
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions java-shared-dependencies/third-party-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@
<artifactId>opentelemetry-grpc-1.6</artifactId>
<version>${opentelemetry-grpc-instrumentation.version}</version>
</dependency>
<dependency>
<groupId>io.opentelemetry.semconv</groupId>
<artifactId>opentelemetry-semconv</artifactId>
<version>${opentelemetry-semconv.version}</version>
</dependency>
<dependency>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should the io.opentelemetry:opentelemetry-semconv deps below (L147-L150) be removed since it's now io.opentelemetry.semconv:opentelemetry-semconv?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had tried that originally, but saw some checks fail because the Pub/Sub library currently uses the old io.opentelemetry:opentelemetry-semconv dependency. I was planning to remove that old one in a follow-up PR after the dependency is removed in Pub/Sub.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, makes sense. I believe our downstream tests use the latest released version of pubsub. In that case, would you mind either creating an issue in this repo or adding a comment in the ticket so we don't forget to remove the old deps?

<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-semconv</artifactId>
Expand Down
Loading