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 0553303388 Salesforce: native build fails because of missing netty
0553303388 is described below
commit 0553303388da219f87b6675bd1c853f1316f3aa3
Author: JiriOndrusek <[email protected]>
AuthorDate: Tue Sep 26 16:18:35 2023 +0200
Salesforce: native build fails because of missing netty
---
extensions/salesforce/deployment/pom.xml | 5 +++++
extensions/salesforce/runtime/pom.xml | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/extensions/salesforce/deployment/pom.xml
b/extensions/salesforce/deployment/pom.xml
index fcdca58709..c202a4b4bb 100644
--- a/extensions/salesforce/deployment/pom.xml
+++ b/extensions/salesforce/deployment/pom.xml
@@ -49,6 +49,11 @@
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-salesforce</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/salesforce/runtime/pom.xml
b/extensions/salesforce/runtime/pom.xml
index 0db7156737..23d088bfff 100644
--- a/extensions/salesforce/runtime/pom.xml
+++ b/extensions/salesforce/runtime/pom.xml
@@ -54,6 +54,11 @@
<groupId>org.apache.camel</groupId>
<artifactId>camel-salesforce</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>