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:30:28 UTC

(camel-k) branch release-2.2.x updated: fix(docs): remove languages

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

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


The following commit(s) were added to refs/heads/release-2.2.x by this push:
     new b51755002 fix(docs): remove languages
b51755002 is described below

commit b517550024dc3c406f7907671d595c0ca185add0
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 0eb5992aa..d724e70a8 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -22,7 +22,6 @@ version: 2.2.x
 display-version: 2.2.x
 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