This is an automated email from the ASF dual-hosted git repository.
fmariani pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 8f16c64154e Camel spring boot docs, add xml-starter dependency
8f16c64154e is described below
commit 8f16c64154ebbb71dcb1c1a74c9fa172ff4468a0
Author: Federico Mariani <[email protected]>
AuthorDate: Mon Nov 20 11:41:48 2023 +0100
Camel spring boot docs, add xml-starter dependency
---
docs/user-manual/modules/ROOT/pages/spring-xml-extensions.adoc | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/docs/user-manual/modules/ROOT/pages/spring-xml-extensions.adoc
b/docs/user-manual/modules/ROOT/pages/spring-xml-extensions.adoc
index 04053c2d88a..8ca5ad40afb 100644
--- a/docs/user-manual/modules/ROOT/pages/spring-xml-extensions.adoc
+++ b/docs/user-manual/modules/ROOT/pages/spring-xml-extensions.adoc
@@ -39,6 +39,16 @@ The following is an example of what it looks like:
== Using Spring XML
+The following dependency needs to be added to your pom.xml so that Spring XML
files can be scanned by Camel:
+
+[source,xml]
+--------------------------------------------------------------------------------------------------------------
+ <dependency>
+ <groupId>org.apache.camel.springboot</groupId>
+ <artifactId>camel-spring-boot-xml-starter</artifactId>
+ </dependency>
+--------------------------------------------------------------------------------------------------------------
+
You can use Spring XML files to specify Camel routes using XML DSL as shown:
[source,xml]