You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2022/12/01 10:05:26 UTC

[camel-karaf] branch CAMEL-18781/re-add-camel-mongodb updated (bcfc511f -> 01e7cb01)

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

nfilotto pushed a change to branch CAMEL-18781/re-add-camel-mongodb
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git


 discard bcfc511f CAMEL-18781: Re-add the camel-mongodb and camel-mongodb-gridfs features
     add db3c7044 Regen
     add 05b931a2 CAMEL-18775: Re-add the camel-spring-redis Karaf feature (#215)
     new 01e7cb01 CAMEL-18781: Re-add the camel-mongodb and camel-mongodb-gridfs features

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (bcfc511f)
            \
             N -- N -- N   refs/heads/CAMEL-18781/re-add-camel-mongodb (01e7cb01)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 .../apache/camel/catalog/karaf/components/aws2-ec2.json |  2 +-
 .../karaf/features/src/main/resources/features.xml      | 17 +++++++++++++++++
 pom.xml                                                 |  3 +++
 3 files changed, 21 insertions(+), 1 deletion(-)


[camel-karaf] 01/01: CAMEL-18781: Re-add the camel-mongodb and camel-mongodb-gridfs features

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

nfilotto pushed a commit to branch CAMEL-18781/re-add-camel-mongodb
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git

commit 01e7cb01c701e3a54f969b8f76e2b9e2174bf4ca
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Thu Dec 1 11:04:47 2022 +0100

    CAMEL-18781: Re-add the camel-mongodb and camel-mongodb-gridfs features
---
 .../karaf/features/src/main/resources/features.xml   | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/platforms/karaf/features/src/main/resources/features.xml b/platforms/karaf/features/src/main/resources/features.xml
index 26778781..1e816d4f 100644
--- a/platforms/karaf/features/src/main/resources/features.xml
+++ b/platforms/karaf/features/src/main/resources/features.xml
@@ -1594,6 +1594,26 @@
     <feature version='${project.version}'>camel-core</feature>
     <bundle>mvn:org.apache.camel/camel-mllp/${project.version}</bundle>
   </feature>
+  <feature name='camel-mongodb' version='${project.version}' start-level='50'>
+    <feature version='${project.version}'>camel-core</feature>
+    <feature version='${project.version}'>camel-jackson</feature>
+    <bundle dependency='true'>mvn:org.mongodb/bson/${mongo-java-driver-version}</bundle>
+    <feature prerequisite='true'>wrap</feature>
+    <!-- Temporary workaround to fix https://jira.mongodb.org/browse/JAVA-4789, won't be needed once 4.8.0 will be released -->
+    <bundle dependency='true'>wrap:mvn:org.mongodb/mongodb-driver-core/${mongo-java-driver-version}$overwrite=merge&amp;Import-Package=*;resolution:=optional</bundle>
+    <bundle dependency='true'>mvn:org.mongodb/mongodb-driver-sync/${mongo-java-driver-version}</bundle>
+    <bundle>mvn:org.apache.camel/camel-mongodb/${project.version}</bundle>
+  </feature>
+  <feature name='camel-mongodb-gridfs' version='${project.version}' start-level='50'>
+    <feature version='${project.version}'>camel-core</feature>
+    <feature version='${project.version}'>camel-jackson</feature>
+    <bundle dependency='true'>mvn:org.mongodb/bson/${mongo-java-driver-version}</bundle>
+    <feature prerequisite='true'>wrap</feature>
+    <!-- Temporary workaround to fix https://jira.mongodb.org/browse/JAVA-4789, won't be needed once 4.8.0 will be released -->
+    <bundle dependency='true'>wrap:mvn:org.mongodb/mongodb-driver-core/${mongo-java-driver-version}$overwrite=merge&amp;Import-Package=*;resolution:=optional</bundle>
+    <bundle dependency='true'>mvn:org.mongodb/mongodb-driver-sync/${mongo-java-driver-version}</bundle>
+    <bundle>mvn:org.apache.camel/camel-mongodb-gridfs/${project.version}</bundle>
+  </feature>
   <feature name='camel-mustache' version='${project.version}' start-level='50'>
     <feature version='${project.version}'>camel-core</feature>
     <bundle dependency='true'>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.mustache-compiler/${mustache-bundle-version}</bundle>