You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/09/08 07:29:00 UTC

[camel-karaf] branch master updated (89ccee3 -> 56c5c7b)

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

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git.


    from 89ccee3  Align to 3.6.0-SNAPSHOT
     new 331d2c6  CAMEL-15509 - Camel-Minio: Create a karaf feature
     new 56c5c7b  Regen docs

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/modules/ROOT/pages/components.adoc                  | 5 ++++-
 platforms/karaf/features/src/main/resources/features.xml | 6 ++++++
 2 files changed, 10 insertions(+), 1 deletion(-)


[camel-karaf] 02/02: Regen docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git

commit 56c5c7bd21505d79cb075fc1ff6acc5727dccf94
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Sep 8 09:28:44 2020 +0200

    Regen docs
---
 docs/modules/ROOT/pages/components.adoc | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/docs/modules/ROOT/pages/components.adoc b/docs/modules/ROOT/pages/components.adoc
index c5e135d..8568cbb 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: 208 in 208 JAR artifacts (1 deprecated)
+Number of Camel components: 209 in 209 JAR artifacts (1 deprecated)
 
 [width="100%",cols="4,1,5",options="header"]
 |===
@@ -377,6 +377,9 @@ Number of Camel components: 208 in 208 JAR artifacts (1 deprecated)
 | xref:components::mina-component.adoc[Mina] (camel-mina) +
 `mina:protocol:host:port` | 2.10 | Socket level networking using TCP or UDP with Apache Mina 2.x.
 
+| xref:components::minio-component.adoc[Minio] (camel-minio) +
+`minio:bucketName` | 3.5 | Store and retrieve objects from Minio Storage Service using Minio SDK.
+
 | xref:components::mllp-component.adoc[MLLP] (camel-mllp) +
 `mllp:hostname:port` | 2.17 | Communicate with external systems using the MLLP protocol.
 


[camel-karaf] 01/02: CAMEL-15509 - Camel-Minio: Create a karaf feature

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git

commit 331d2c690dd8e0872447eb3cb704dae9215df365
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Sep 8 09:09:34 2020 +0200

    CAMEL-15509 - Camel-Minio: Create a karaf feature
---
 platforms/karaf/features/src/main/resources/features.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/platforms/karaf/features/src/main/resources/features.xml b/platforms/karaf/features/src/main/resources/features.xml
index dc10999..2a76175 100644
--- a/platforms/karaf/features/src/main/resources/features.xml
+++ b/platforms/karaf/features/src/main/resources/features.xml
@@ -1815,6 +1815,12 @@
     <bundle dependency='true'>mvn:org.apache.mina/mina-core/${mina-version}</bundle>
     <bundle>mvn:org.apache.camel/camel-mina/${project.version}</bundle>
   </feature>
+  <feature name='camel-minio' version='${project.version}' start-level='50'>
+    <feature version='${project.version}'>camel-core</feature>
+    <bundle dependency='true'>wrap:mvn:io.minio/minio/${minio-version}</bundle>
+    <bundle dependency='true'>wrap:mvn:com.squareup.okhttp3/okhttp/${okclient-version}</bundle>
+    <bundle>mvn:org.apache.camel/camel-minio/${project.version}</bundle>
+  </feature>
   <feature name='camel-mllp' version='${project.version}' start-level='50'>
     <feature version='${project.version}'>camel-core</feature>
     <bundle>mvn:org.apache.camel/camel-mllp/${project.version}</bundle>