This is an automated email from the ASF dual-hosted git repository.
zhfeng pushed a commit to branch 3.2.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/3.2.x by this push:
new be27370231 Kafka: native build fails because of missing vertx
be27370231 is described below
commit be27370231f8f2bc45213a4d8435039d62e98ffe
Author: JiriOndrusek <[email protected]>
AuthorDate: Tue Sep 26 14:30:13 2023 +0200
Kafka: native build fails because of missing vertx
---
extensions/kafka/deployment/pom.xml | 5 +++++
extensions/kafka/runtime/pom.xml | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/extensions/kafka/deployment/pom.xml
b/extensions/kafka/deployment/pom.xml
index 5e2be669ef..c6fc98bd4b 100644
--- a/extensions/kafka/deployment/pom.xml
+++ b/extensions/kafka/deployment/pom.xml
@@ -42,6 +42,11 @@
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-kafka</artifactId>
</dependency>
+ <!-- Required for the native build of the simple app with this
extension only -->
+ <dependency>
+ <groupId>io.quarkus</groupId>
+ <artifactId>quarkus-vertx-deployment</artifactId>
+ </dependency>
<dependency>
<groupId>io.quarkus</groupId>
diff --git a/extensions/kafka/runtime/pom.xml b/extensions/kafka/runtime/pom.xml
index ed0158aef8..57c6b81248 100644
--- a/extensions/kafka/runtime/pom.xml
+++ b/extensions/kafka/runtime/pom.xml
@@ -47,6 +47,11 @@
<groupId>org.apache.camel</groupId>
<artifactId>camel-kafka</artifactId>
</dependency>
+ <!-- Required for the native build of the simple app with this
extension only -->
+ <dependency>
+ <groupId>io.quarkus</groupId>
+ <artifactId>quarkus-vertx</artifactId>
+ </dependency>
</dependencies>
<build>