This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new f57d574433 Exclude unwanted vertx-grpc transitive dependencies form
quarkus-grpc-common
f57d574433 is described below
commit f57d5744334dabc5b3f3e71a8cf93da5c6468d53
Author: James Netherton <[email protected]>
AuthorDate: Wed Aug 16 08:26:15 2023 +0100
Exclude unwanted vertx-grpc transitive dependencies form quarkus-grpc-common
---
extensions/grpc/deployment/pom.xml | 28 ++++++++++++++++++++++++++++
extensions/grpc/runtime/pom.xml | 18 ++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/extensions/grpc/deployment/pom.xml
b/extensions/grpc/deployment/pom.xml
index f7a8ef6381..efb7f88e6e 100644
--- a/extensions/grpc/deployment/pom.xml
+++ b/extensions/grpc/deployment/pom.xml
@@ -30,9 +30,37 @@
<name>Camel Quarkus :: gRPC :: Deployment</name>
<dependencies>
+ <dependency>
+ <groupId>io.quarkus</groupId>
+ <artifactId>quarkus-grpc-common</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>io.quarkus</groupId>
+ <artifactId>quarkus-vertx</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>io.vertx</groupId>
+ <artifactId>vertx-grpc</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>io.vertx</groupId>
+ <artifactId>vertx-grpc-client</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>io.vertx</groupId>
+ <artifactId>vertx-grpc-server</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-grpc-common-deployment</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>io.quarkus</groupId>
+ <artifactId>quarkus-vertx-deployment</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
diff --git a/extensions/grpc/runtime/pom.xml b/extensions/grpc/runtime/pom.xml
index 76d1785641..e345f11289 100644
--- a/extensions/grpc/runtime/pom.xml
+++ b/extensions/grpc/runtime/pom.xml
@@ -38,6 +38,24 @@
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-grpc-common</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>io.quarkus</groupId>
+ <artifactId>quarkus-vertx</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>io.vertx</groupId>
+ <artifactId>vertx-grpc</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>io.vertx</groupId>
+ <artifactId>vertx-grpc-client</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>io.vertx</groupId>
+ <artifactId>vertx-grpc-server</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>