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 2021/05/17 05:01:13 UTC

[camel-karaf] branch main updated: Add camel-kamelet-reify feature

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


The following commit(s) were added to refs/heads/main by this push:
     new ec0c7a3  Add camel-kamelet-reify feature
ec0c7a3 is described below

commit ec0c7a31f6f6036d8c5575f10e9ee315e0809a3a
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon May 17 07:00:59 2021 +0200

    Add camel-kamelet-reify feature
---
 docs/modules/ROOT/pages/components.adoc                  | 5 ++++-
 platforms/karaf/features/src/main/resources/features.xml | 4 ++++
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/docs/modules/ROOT/pages/components.adoc b/docs/modules/ROOT/pages/components.adoc
index b2c8119..e49f741 100644
--- a/docs/modules/ROOT/pages/components.adoc
+++ b/docs/modules/ROOT/pages/components.adoc
@@ -5,7 +5,7 @@ Apache Camel Karaf supports the following Camel artifacts as Karaf features
 == Camel Components
 
 // components: START
-Number of Camel components: 184 in 184 JAR artifacts (1 deprecated)
+Number of Camel components: 185 in 185 JAR artifacts (1 deprecated)
 
 [width="100%",cols="4,1,5",options="header"]
 |===
@@ -275,6 +275,9 @@ Number of Camel components: 184 in 184 JAR artifacts (1 deprecated)
 | xref:components::kamelet-component.adoc[Kamelet] (camel-kamelet) +
 `kamelet:templateId/routeId` | 3.8 | To call Kamelets
 
+| xref:components::kamelet-reify-component.adoc[Kamelet Reify] (camel-kamelet-reify) +
+`kamelet-reify:delegateUri` | 3.6 | To call Kamelets (indirectly)
+
 | xref:components::kudu-component.adoc[Kudu] (camel-kudu) +
 `kudu:host:port/tableName` | 3.0 | Interact with Apache Kudu, a free and open source column-oriented data store of the Apache Hadoop ecosystem.
 
diff --git a/platforms/karaf/features/src/main/resources/features.xml b/platforms/karaf/features/src/main/resources/features.xml
index 31b122b..17737b9 100644
--- a/platforms/karaf/features/src/main/resources/features.xml
+++ b/platforms/karaf/features/src/main/resources/features.xml
@@ -1249,6 +1249,10 @@
     <feature version='${project.version}'>camel-core</feature>
     <bundle>mvn:org.apache.camel/camel-kamelet/${project.version}</bundle>
   </feature>
+  <feature name='camel-kamelet-reify' version='${project.version}' start-level='50'>
+    <feature version='${project.version}'>camel-kamelet</feature>
+    <bundle>mvn:org.apache.camel/camel-kamelet-reify/${project.version}</bundle>
+  </feature>
   <feature name='camel-kubernetes' version='${project.version}' start-level='50'>
     <feature version='${project.version}'>camel-core</feature>
     <bundle dependency='true'>mvn:javax.validation/validation-api/${validation-1-api-version}</bundle>