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 26d0f60eb6 Move Quarkus Qpid JMS configuration content to AMQP
extension usage section
26d0f60eb6 is described below
commit 26d0f60eb6b977fc7e7b2684de711a9c483f62a7
Author: James Netherton <[email protected]>
AuthorDate: Wed Oct 30 13:12:30 2024 +0000
Move Quarkus Qpid JMS configuration content to AMQP extension usage section
---
docs/modules/ROOT/pages/reference/extensions/amqp.adoc | 12 ++++--------
extensions/amqp/runtime/src/main/doc/configuration.adoc | 3 ---
extensions/amqp/runtime/src/main/doc/usage.adoc | 4 ++++
3 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/docs/modules/ROOT/pages/reference/extensions/amqp.adoc
b/docs/modules/ROOT/pages/reference/extensions/amqp.adoc
index 93c61145e2..1f400d977e 100644
--- a/docs/modules/ROOT/pages/reference/extensions/amqp.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/amqp.adoc
@@ -47,6 +47,10 @@ endif::[]
[id="extensions-amqp-usage"]
== Usage
+This extension leverages https://github.com/amqphub/quarkus-qpid-jms/[Quarkus
Qpid JMS]. A `ConnectionFactory` bean is created automatically
+and wired into the AMQP component for you. The connection factory can be
configured
+via the Quarkus Qpid JMS
https://github.com/amqphub/quarkus-qpid-jms#configuration[configuration
options].
+
[id="extensions-amqp-usage-message-mapping-with-org-w3c-dom-node"]
=== Message mapping with `org.w3c.dom.Node`
@@ -91,11 +95,3 @@ You will also need to enable serialization for the exception
classes that you in
----
@RegisterForReflection(targets = { IllegalStateException.class,
MyCustomException.class }, serialization = true)
----
-
-[id="extensions-amqp-additional-camel-quarkus-configuration"]
-== Additional Camel Quarkus configuration
-
-The extension leverages the
https://github.com/amqphub/quarkus-qpid-jms/[Quarkus Qpid JMS] extension. A
ConnectionFactory bean is automatically created
-and wired into the AMQP component for you. The connection factory can be
configured
-via the Quarkus Qpid JMS
https://github.com/amqphub/quarkus-qpid-jms#configuration[configuration
options].
-
diff --git a/extensions/amqp/runtime/src/main/doc/configuration.adoc
b/extensions/amqp/runtime/src/main/doc/configuration.adoc
deleted file mode 100644
index 0d7ffc1e41..0000000000
--- a/extensions/amqp/runtime/src/main/doc/configuration.adoc
+++ /dev/null
@@ -1,3 +0,0 @@
-The extension leverages the
https://github.com/amqphub/quarkus-qpid-jms/[Quarkus Qpid JMS] extension. A
ConnectionFactory bean is automatically created
-and wired into the AMQP component for you. The connection factory can be
configured
-via the Quarkus Qpid JMS
https://github.com/amqphub/quarkus-qpid-jms#configuration[configuration
options].
diff --git a/extensions/amqp/runtime/src/main/doc/usage.adoc
b/extensions/amqp/runtime/src/main/doc/usage.adoc
index 258357644d..6e0ac9ff9c 100644
--- a/extensions/amqp/runtime/src/main/doc/usage.adoc
+++ b/extensions/amqp/runtime/src/main/doc/usage.adoc
@@ -1,3 +1,7 @@
+This extension leverages https://github.com/amqphub/quarkus-qpid-jms/[Quarkus
Qpid JMS]. A `ConnectionFactory` bean is created automatically
+and wired into the AMQP component for you. The connection factory can be
configured
+via the Quarkus Qpid JMS
https://github.com/amqphub/quarkus-qpid-jms#configuration[configuration
options].
+
=== Message mapping with `org.w3c.dom.Node`
The Camel AMQP component supports message mapping between
`jakarta.jms.Message` and `org.apache.camel.Message`. When wanting to convert a
Camel message body type of `org.w3c.dom.Node`,