This is an automated email from the ASF dual-hosted git repository. fmariani pushed a commit to branch Croway-patch-1 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 3f5ae51e95a9f72919c19bd43feae1ec90d3c3ff Author: Federico Mariani <34543311+cro...@users.noreply.github.com> 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]