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 c7f58ce266 Aws2 kinesis: native build fails because of missing netty
c7f58ce266 is described below

commit c7f58ce266bcc259a3b516aaf23b789d3d8ac135
Author: JiriOndrusek <ondrusek.j...@gmail.com>
AuthorDate: Tue Sep 26 10:52:04 2023 +0200

    Aws2 kinesis: native build fails because of missing netty
---
 extensions/aws2-kinesis/deployment/pom.xml | 5 +++++
 extensions/aws2-kinesis/runtime/pom.xml    | 5 +++++
 2 files changed, 10 insertions(+)

diff --git a/extensions/aws2-kinesis/deployment/pom.xml 
b/extensions/aws2-kinesis/deployment/pom.xml
index cb726a7295..c1c72b159a 100644
--- a/extensions/aws2-kinesis/deployment/pom.xml
+++ b/extensions/aws2-kinesis/deployment/pom.xml
@@ -42,6 +42,11 @@
             <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-aws2-kinesis</artifactId>
         </dependency>
+        <!-- Required for the native build of the simple app with this 
extension only -->
+        <dependency>
+            <groupId>io.quarkus</groupId>
+            <artifactId>quarkus-netty-deployment</artifactId>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/extensions/aws2-kinesis/runtime/pom.xml 
b/extensions/aws2-kinesis/runtime/pom.xml
index ce4e724aa0..97cfedf887 100644
--- a/extensions/aws2-kinesis/runtime/pom.xml
+++ b/extensions/aws2-kinesis/runtime/pom.xml
@@ -49,6 +49,11 @@
             <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-support-aws2</artifactId>
         </dependency>
+        <!-- Required for the native build of the simple app with this 
extension only -->
+        <dependency>
+            <groupId>io.quarkus</groupId>
+            <artifactId>quarkus-netty</artifactId>
+        </dependency>
     </dependencies>
 
     <build>

Reply via email to