You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2024/01/08 15:28:55 UTC

(camel-k) branch main updated: fix(docs): remove languages

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 2b2f40359 fix(docs): remove languages
2b2f40359 is described below

commit 2b2f403599809095b36af55bc3c2b5bf4c483b77
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Mon Jan 8 16:28:13 2024 +0100

    fix(docs): remove languages
    
    This module require coupling with Camel K runtime
---
 docs/antora.yml                              | 1 -
 docs/modules/ROOT/pages/running/running.adoc | 4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index aa8114a6a..d5aaa7583 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -23,7 +23,6 @@ prerelease: true
 display-version: Next (Pre-release)
 nav:
   - modules/ROOT/nav.adoc
-  - modules/languages/nav-languages.adoc
   - modules/ROOT/nav-end.adoc
 # It should be automatically generated by an action running nightly
 asciidoc:
diff --git a/docs/modules/ROOT/pages/running/running.adoc b/docs/modules/ROOT/pages/running/running.adoc
index f2d142e29..9dd1a4608 100644
--- a/docs/modules/ROOT/pages/running/running.adoc
+++ b/docs/modules/ROOT/pages/running/running.adoc
@@ -28,7 +28,7 @@ You can run it on the cluster by executing:
 kamel run hello.groovy
 ```
 
-Integrations can be written in any supported xref:languages:languages.adoc[Camel DSL]. We are collecting examples in our https://github.com/apache/camel-k/[Camel K GitHub repository].
+Integrations can be written in any supported Camel DSL. We are collecting examples in our https://github.com/apache/camel-k/[Camel K GitHub repository].
 
 [[monitoring-integration]]
 == Monitoring the application status
@@ -60,7 +60,7 @@ Camel K provide a very nice **dev mode** feature that will allow you to apply an
 [[running-model]]
 == Camel K development model
 
-The idea of Camel K is to simplify the deployment of your Integration to the cloud. For this reason, there are certain limitations you need to take into account, depending on the xref:languages:languages.adoc[Camel DSL] you're using. For instance, taking Java DSL as reference, you are generally requested to maintain your route development within a single class. As soon as your development gain complexity, the suggestion is to keep the business logic in an external dependency and use such [...]
+The idea of Camel K is to simplify the deployment of your Integration to the cloud. For this reason, there are certain limitations you need to take into account, depending on the Camel DSL you're using. For instance, taking Java DSL as reference, you are generally requested to maintain your route development within a single class. As soon as your development gain complexity, the suggestion is to keep the business logic in an external dependency and use such dependency from your class con [...]
 
 [[running-integration-dsl]]
 == Running locally