You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by co...@apache.org on 2019/05/27 14:26:26 UTC

[camel] branch camel-2.x updated (cf7186d -> 0c20c3a)

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

coheigea pushed a change to branch camel-2.x
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from cf7186d  CAMEL-13471 - Adding more tests
     new 64c9e2d  CAMEL-13471 - Aligned the Karaf feature
     new 0c20c3a  Adding netty deps to camel-coap feature, which are required for tcp connector

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:
 platforms/karaf/features/src/main/resources/features.xml | 7 +++++++
 1 file changed, 7 insertions(+)


[camel] 01/02: CAMEL-13471 - Aligned the Karaf feature

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

coheigea pushed a commit to branch camel-2.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 64c9e2daf1ade0a8e0445f173f779baae606c53a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Apr 30 16:00:37 2019 +0200

    CAMEL-13471 - Aligned the Karaf feature
---
 platforms/karaf/features/src/main/resources/features.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/platforms/karaf/features/src/main/resources/features.xml b/platforms/karaf/features/src/main/resources/features.xml
index 628db66..3f0fd96 100644
--- a/platforms/karaf/features/src/main/resources/features.xml
+++ b/platforms/karaf/features/src/main/resources/features.xml
@@ -408,6 +408,7 @@
     <feature version='${project.version}'>camel-core</feature>
     <bundle>wrap:mvn:org.eclipse.californium/californium-core/${californium-version}</bundle>
     <bundle>wrap:mvn:org.eclipse.californium/element-connector/${californium-version}</bundle>
+    <bundle>wrap:mvn:org.eclipse.californium/element-connector-tcp/${californium-version}</bundle>
     <bundle>wrap:mvn:org.eclipse.californium/scandium/${californium-version}</bundle>
     <bundle>mvn:org.apache.camel/camel-coap/${project.version}</bundle>
   </feature>


[camel] 02/02: Adding netty deps to camel-coap feature, which are required for tcp connector

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

coheigea pushed a commit to branch camel-2.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 0c20c3a91274d03dc598a2074a562ee5c12909ba
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Mon May 27 15:24:43 2019 +0100

    Adding netty deps to camel-coap feature, which are required for tcp connector
---
 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 3f0fd96..84cd3ad 100644
--- a/platforms/karaf/features/src/main/resources/features.xml
+++ b/platforms/karaf/features/src/main/resources/features.xml
@@ -406,6 +406,12 @@
   </feature>
   <feature name='camel-coap' version='${project.version}' resolver='(obr)' start-level='50'>
     <feature version='${project.version}'>camel-core</feature>
+    <bundle dependency='true'>mvn:io.netty/netty-buffer/${netty-version}</bundle>
+    <bundle dependency='true'>mvn:io.netty/netty-codec/${netty-version}</bundle>
+    <bundle dependency='true'>mvn:io.netty/netty-common/${netty-version}</bundle>
+    <bundle dependency='true'>mvn:io.netty/netty-handler/${netty-version}</bundle>
+    <bundle dependency='true'>mvn:io.netty/netty-resolver/${netty-version}</bundle>
+    <bundle dependency='true'>mvn:io.netty/netty-transport/${netty-version}</bundle>
     <bundle>wrap:mvn:org.eclipse.californium/californium-core/${californium-version}</bundle>
     <bundle>wrap:mvn:org.eclipse.californium/element-connector/${californium-version}</bundle>
     <bundle>wrap:mvn:org.eclipse.californium/element-connector-tcp/${californium-version}</bundle>