This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit ffeefbf310d7e02cf350d8360226cf46eac09286 Author: Claus Ibsen <[email protected]> AuthorDate: Mon Feb 15 10:35:23 2021 +0100 Add missing docs --- .../camel-jfr-starter/src/main/docs/jfr-starter.adoc | 19 +++++++++++++++++++ .../src/main/docs/spring-xml.adoc | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/components-starter/camel-jfr-starter/src/main/docs/jfr-starter.adoc b/components-starter/camel-jfr-starter/src/main/docs/jfr-starter.adoc new file mode 100644 index 0000000..c5b3b54 --- /dev/null +++ b/components-starter/camel-jfr-starter/src/main/docs/jfr-starter.adoc @@ -0,0 +1,19 @@ +// spring-boot-auto-configure options: START +:page-partial: +:doctitle: Camel Spring Boot Starter for Java Flight Recorder + +== Spring Boot Auto-Configuration + +When using JFR (Java Flight Recorder) with Spring Boot make sure to use the following Maven dependency to have support for auto configuration: + +[source,xml] +---- +<dependency> + <groupId>org.apache.camel.springboot</groupId> + <artifactId>camel-jfr-starter</artifactId> + <version>x.x.x</version> + <!-- use the same version as your Camel core version --> +</dependency> +---- + +// spring-boot-auto-configure options: END diff --git a/core-starter/camel-spring-boot-xml-starter/src/main/docs/spring-xml.adoc b/core-starter/camel-spring-boot-xml-starter/src/main/docs/spring-xml.adoc new file mode 100644 index 0000000..9560a49 --- /dev/null +++ b/core-starter/camel-spring-boot-xml-starter/src/main/docs/spring-xml.adoc @@ -0,0 +1,19 @@ +// spring-boot-auto-configure options: START +:page-partial: +:doctitle: Camel Spring Boot Starter for Spring XML + +== Spring Boot Auto-Configuration + +When using Spring XML with Spring Boot make sure to use the following Maven dependency to have support for auto configuration: + +[source,xml] +---- +<dependency> + <groupId>org.apache.camel.springboot</groupId> + <artifactId>camel-spring-boot-xml-starter</artifactId> + <version>x.x.x</version> + <!-- use the same version as your Camel core version --> +</dependency> +---- + +// spring-boot-auto-configure options: END
