Skip to content

Commit

Permalink
fix(proxy): remove shaded grpc dependency (#759)
Browse files Browse the repository at this point in the history
Signed-off-by: SSpirits <[email protected]>
  • Loading branch information
ShadowySpirits authored Nov 29, 2023
1 parent 90c001b commit 71b01b9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 22 deletions.
19 changes: 0 additions & 19 deletions cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,25 +52,6 @@
<dependency>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-client-java-noshade</artifactId>
<version>5.0.5</version>
<exclusions>
<exclusion>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-api</artifactId>
</exclusion>
<exclusion>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-sdk</artifactId>
</exclusion>
<exclusion>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-exporter-otlp-common</artifactId>
</exclusion>
<exclusion>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-sdk-metrics</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,17 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-client-java-noshade</artifactId>
<version>5.0.5</version>
<exclusions>
<exclusion>
<groupId>io.opentelemetry</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-bom</artifactId>
Expand Down
4 changes: 1 addition & 3 deletions proxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@
</dependency>
<dependency>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-client-java</artifactId>
<version>5.0.4</version>
<artifactId>rocketmq-client-java-noshade</artifactId>
</dependency>
</dependencies>

</project>

0 comments on commit 71b01b9

Please sign in to comment.