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 2022/08/05 10:33:56 UTC

[camel] branch main updated: Polished docs

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.git


The following commit(s) were added to refs/heads/main by this push:
     new 62600fa5e6c Polished docs
62600fa5e6c is described below

commit 62600fa5e6cf02f67c371591e8356854fc1be791
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Aug 5 12:33:38 2022 +0200

    Polished docs
---
 dsl/camel-kamelet-main/src/main/docs/kamelet-main.adoc | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/dsl/camel-kamelet-main/src/main/docs/kamelet-main.adoc b/dsl/camel-kamelet-main/src/main/docs/kamelet-main.adoc
index edb80de30ce..1d69bb54493 100644
--- a/dsl/camel-kamelet-main/src/main/docs/kamelet-main.adoc
+++ b/dsl/camel-kamelet-main/src/main/docs/kamelet-main.adoc
@@ -20,12 +20,8 @@ The `KameletMain` is pre-configured with the following properties:
 [source,properties]
 ----
 camel.component.kamelet.location = classpath:/kamelets,github:apache:camel-kamelets/kamelets
-camel.main.routes-include-pattern = classpath:camel/*
-camel.main.routes-reload-enabled = true
-camel.main.routes-reload-directory = src/main/resources
-camel.main.routes-reload-pattern = camel/*.yaml
-camel.main.shutdown-timeout = 5
-camel.main.lightweight = false
+camel.component.rest.consumerComponentName = platform-http
+camel.component.rest.producerComponentName = vertx-http
 ----
 
 These settings can be overridden by configuration in `application.properties`.
@@ -50,7 +46,5 @@ For example a Camel route can be _coded_ in YAML which uses the Earthquake Kamel
 
 In this use-case the earthquake kamelet will be downloaded from github, and as well its required dependencies.
 
-NOTE: The dependencies are downloaded to `~/.groovy/grapes` directory. To force re-download then this directory can be deleted.
-
 You can find an example with this at
 https://github.com/apache/camel-examples/tree/main/examples/kamelet-main[kamelet-main].