You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/02/02 05:42:44 UTC

[camel-spring-boot] branch main updated: Remove ActiveMQ references from docs (#728)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new e4178ec4912 Remove ActiveMQ references from docs (#728)
e4178ec4912 is described below

commit e4178ec4912b7017c1bac4074d5cc1f4520a81a1
Author: Federico Mariani <34...@users.noreply.github.com>
AuthorDate: Thu Feb 2 06:42:39 2023 +0100

    Remove ActiveMQ references from docs (#728)
---
 core/camel-spring-boot/src/main/docs/starter-configuration.adoc | 4 ++--
 docs/spring-boot/modules/ROOT/pages/index.adoc                  | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/core/camel-spring-boot/src/main/docs/starter-configuration.adoc b/core/camel-spring-boot/src/main/docs/starter-configuration.adoc
index a1405e0efbf..c98e54a399b 100644
--- a/core/camel-spring-boot/src/main/docs/starter-configuration.adoc
+++ b/core/camel-spring-boot/src/main/docs/starter-configuration.adoc
@@ -7,11 +7,11 @@ Clear and accessible configuration is a crucial part of any application. Camel x
 
 Internally, every xref:list.adoc[starter] is configured through Spring Boot's https://docs.spring.io/spring-boot/docs/current/reference/html/features.html#features.external-config.typesafe-configuration-properties.java-bean-binding[ConfigurationProperties]. Each configuration parameter can be set in various https://docs.spring.io/spring-boot/docs/current/reference/html/features.html#features.external-config[ways] (`application.[properties|json|yaml]` files, command line arguments, enviro [...]
 
-For example to configure the URL of the ActiveMQ broker you can set:
+For example to configure the URL of the MQTT5 broker you can set:
 
 [source]
 ----
-camel.component.activemq.broker-url=tcp://localhost:61616
+camel.component.paho-mqtt5.broker-url=tcp://localhost:61616
 ----
 
 Or to configure the `delimeter` of the CSV dataformat to be a semicolon(;) you can set:
diff --git a/docs/spring-boot/modules/ROOT/pages/index.adoc b/docs/spring-boot/modules/ROOT/pages/index.adoc
index bae8e841118..eea67536f0a 100644
--- a/docs/spring-boot/modules/ROOT/pages/index.adoc
+++ b/docs/spring-boot/modules/ROOT/pages/index.adoc
@@ -39,7 +39,7 @@ Next, add the xref:spring-boot.adoc[Camel Spring Boot starter] to startup the xr
     </dependencies>
 ----
 
-Also add any xref:list.adoc[component starters] your Spring Boot application requires. For example this adds the xref:components::activemq-component.adoc#_spring_boot_auto_configuration[auto-configuration starter] for the xref:components::activemq-component.adoc[ActiveMQ component].
+Also add any xref:list.adoc[component starters] your Spring Boot application requires. For example this adds the xref:components::jms-component.adoc#_spring_boot_auto_configuration[auto-configuration starter] for the xref:components::jms-component.adoc[JMS component].
 
 [source,xml]
 ----
@@ -47,7 +47,7 @@ Also add any xref:list.adoc[component starters] your Spring Boot application req
         <!-- ... other dependencies ... -->
         <dependency>
             <groupId>org.apache.camel.springboot</groupId>
-            <artifactId>camel-activemq-starter</artifactId>
+            <artifactId>camel-jms-starter</artifactId>
         </dependency>
     </dependencies>
 ----
@@ -72,11 +72,11 @@ camel.springboot.main-run-controller = true
 
 == Spring Boot configuration support
 
-Each xref:list.adoc[starter] lists configuration parameters you can configure in the standard `application.properties` or `application.yml` files. These parameters have the form of `camel.component.[component-name].[parameter]`. For example to configure the URL of the ActiveMQ broker you can set:
+Each xref:list.adoc[starter] lists configuration parameters you can configure in the standard `application.properties` or `application.yml` files. These parameters have the form of `camel.component.[component-name].[parameter]`. For example to configure the URL of the MQTT5 broker you can set:
 
 [source]
 ----
-camel.component.activemq.broker-url=tcp://localhost:61616
+camel.component.paho-mqtt5.broker-url=tcp://localhost:61616
 ----
 
 == Adding Camel routes