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 df21412e07 Add missing camel-quarkus-support-aws2 dependency to 
aws-bedrock & aws2-eventbridge extensions
df21412e07 is described below

commit df21412e0746e7b8debd4f54675f95db4a9d892a
Author: James Netherton <[email protected]>
AuthorDate: Tue Sep 24 10:58:15 2024 +0100

    Add missing camel-quarkus-support-aws2 dependency to aws-bedrock & 
aws2-eventbridge extensions
    
    Fixes #6538
---
 docs/modules/ROOT/pages/reference/extensions/aws-bedrock.adoc      | 7 +++++++
 docs/modules/ROOT/pages/reference/extensions/aws2-eventbridge.adoc | 7 +++++++
 extensions/aws-bedrock/deployment/pom.xml                          | 4 ++++
 extensions/aws-bedrock/runtime/pom.xml                             | 4 ++++
 extensions/aws2-eventbridge/deployment/pom.xml                     | 4 ++++
 extensions/aws2-eventbridge/runtime/pom.xml                        | 4 ++++
 6 files changed, 30 insertions(+)

diff --git a/docs/modules/ROOT/pages/reference/extensions/aws-bedrock.adoc 
b/docs/modules/ROOT/pages/reference/extensions/aws-bedrock.adoc
index 461073fdc9..5aef005871 100644
--- a/docs/modules/ROOT/pages/reference/extensions/aws-bedrock.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/aws-bedrock.adoc
@@ -45,3 +45,10 @@ Or add the coordinates to your existing project:
 ifeval::[{doc-show-user-guide-link} == true]
 Check the xref:user-guide/index.adoc[User guide] for more information about 
writing Camel Quarkus applications.
 endif::[]
+
+[id="extensions-aws-bedrock-ssl-in-native-mode"]
+== SSL in native mode
+
+This extension auto-enables SSL support in native mode. Hence you do not need 
to add
+`quarkus.ssl.native=true` to your `application.properties` yourself. See also
+https://quarkus.io/guides/native-and-ssl[Quarkus SSL guide].
diff --git a/docs/modules/ROOT/pages/reference/extensions/aws2-eventbridge.adoc 
b/docs/modules/ROOT/pages/reference/extensions/aws2-eventbridge.adoc
index ac31a748a2..b49fdfe722 100644
--- a/docs/modules/ROOT/pages/reference/extensions/aws2-eventbridge.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/aws2-eventbridge.adoc
@@ -43,3 +43,10 @@ Or add the coordinates to your existing project:
 ifeval::[{doc-show-user-guide-link} == true]
 Check the xref:user-guide/index.adoc[User guide] for more information about 
writing Camel Quarkus applications.
 endif::[]
+
+[id="extensions-aws2-eventbridge-ssl-in-native-mode"]
+== SSL in native mode
+
+This extension auto-enables SSL support in native mode. Hence you do not need 
to add
+`quarkus.ssl.native=true` to your `application.properties` yourself. See also
+https://quarkus.io/guides/native-and-ssl[Quarkus SSL guide].
diff --git a/extensions/aws-bedrock/deployment/pom.xml 
b/extensions/aws-bedrock/deployment/pom.xml
index cd85773934..42804dca6a 100644
--- a/extensions/aws-bedrock/deployment/pom.xml
+++ b/extensions/aws-bedrock/deployment/pom.xml
@@ -34,6 +34,10 @@
             <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-core-deployment</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.camel.quarkus</groupId>
+            <artifactId>camel-quarkus-support-aws2-deployment</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-aws-bedrock</artifactId>
diff --git a/extensions/aws-bedrock/runtime/pom.xml 
b/extensions/aws-bedrock/runtime/pom.xml
index 9232e980b0..66bfb7a959 100644
--- a/extensions/aws-bedrock/runtime/pom.xml
+++ b/extensions/aws-bedrock/runtime/pom.xml
@@ -40,6 +40,10 @@
             <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-core</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.camel.quarkus</groupId>
+            <artifactId>camel-quarkus-support-aws2</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-aws-bedrock</artifactId>
diff --git a/extensions/aws2-eventbridge/deployment/pom.xml 
b/extensions/aws2-eventbridge/deployment/pom.xml
index b947734522..e18980d1ed 100644
--- a/extensions/aws2-eventbridge/deployment/pom.xml
+++ b/extensions/aws2-eventbridge/deployment/pom.xml
@@ -34,6 +34,10 @@
             <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-core-deployment</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.camel.quarkus</groupId>
+            <artifactId>camel-quarkus-support-aws2-deployment</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-aws2-eventbridge</artifactId>
diff --git a/extensions/aws2-eventbridge/runtime/pom.xml 
b/extensions/aws2-eventbridge/runtime/pom.xml
index b51c5145c7..2f5104d336 100644
--- a/extensions/aws2-eventbridge/runtime/pom.xml
+++ b/extensions/aws2-eventbridge/runtime/pom.xml
@@ -41,6 +41,10 @@
             <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-core</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.camel.quarkus</groupId>
+            <artifactId>camel-quarkus-support-aws2</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-aws2-eventbridge</artifactId>

Reply via email to