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/03/31 11:06:55 UTC

[camel-examples] branch master updated (e94ee6d -> 0abf6fc)

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


    from e94ee6d  First example with usage of camel-karaf-bom
     new 9db3a84  Camel-example-ehcache-blueprint: Usage of camel-karaf-bom
     new ad36309  Camel-fhir-osgi: Usage of camel-karaf-bom
     new 6673484  Camel-example-mybatis: Usage of camel-karaf-bom
     new 2b14b93  Camel-example-netty-http: Usage of camel-karaf-bom
     new 35bbefa  Camel-example-olingo4: Usage of camel-karaf-bom
     new 9c19709  Camel-example-sql-blueprint: Usage of camel-karaf-bom
     new be2e313  Camel-example-transformer-blueprint: Usage of camel-karaf-bom
     new 0abf6fc  Use camel.karaf.version everywhere

The 8 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:
 examples/camel-example-ehcache-blueprint/pom.xml     |  9 ++++++++-
 examples/camel-example-fhir-osgi/pom.xml             |  9 ++++++++-
 examples/camel-example-mybatis/pom.xml               |  9 ++++++++-
 examples/camel-example-netty-http/pom.xml            |  9 ++++++++-
 examples/camel-example-olingo4-blueprint/pom.xml     |  9 ++++++++-
 examples/camel-example-sql-blueprint/pom.xml         |  9 ++++++++-
 examples/camel-example-transformer-blueprint/pom.xml | 11 ++++++++---
 7 files changed, 56 insertions(+), 9 deletions(-)


[camel-examples] 02/08: Camel-fhir-osgi: Usage of camel-karaf-bom

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

commit ad3630906c0773a3c8401678789c6c048a3cd8d8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 31 12:36:30 2020 +0200

    Camel-fhir-osgi: Usage of camel-karaf-bom
---
 examples/camel-example-fhir-osgi/pom.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/examples/camel-example-fhir-osgi/pom.xml b/examples/camel-example-fhir-osgi/pom.xml
index 1dea0ea..d574c06 100644
--- a/examples/camel-example-fhir-osgi/pom.xml
+++ b/examples/camel-example-fhir-osgi/pom.xml
@@ -46,6 +46,14 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <!-- Add Camel Karaf BOM -->
+            <dependency>
+                <groupId>org.apache.camel.karaf</groupId>
+                <artifactId>camel-karaf-bom</artifactId>
+                <version>${project.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -64,7 +72,6 @@
         <dependency>
             <groupId>org.apache.camel.karaf</groupId>
             <artifactId>camel-blueprint</artifactId>
-            <version>${camel.karaf.version}</version>
         </dependency>
 
         <dependency>


[camel-examples] 07/08: Camel-example-transformer-blueprint: Usage of camel-karaf-bom

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

commit be2e3138b3320fb9def0e593c35a71e9aaaf5b52
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 31 12:54:13 2020 +0200

    Camel-example-transformer-blueprint: Usage of camel-karaf-bom
---
 examples/camel-example-transformer-blueprint/pom.xml | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/examples/camel-example-transformer-blueprint/pom.xml b/examples/camel-example-transformer-blueprint/pom.xml
index 84bbf61..6f92cab 100644
--- a/examples/camel-example-transformer-blueprint/pom.xml
+++ b/examples/camel-example-transformer-blueprint/pom.xml
@@ -47,6 +47,14 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <!-- Add Camel Karaf BOM -->
+            <dependency>
+                <groupId>org.apache.camel.karaf</groupId>
+                <artifactId>camel-karaf-bom</artifactId>
+                <version>${project.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -59,12 +67,10 @@
         <dependency>
             <groupId>org.apache.camel.karaf</groupId>
             <artifactId>camel-blueprint</artifactId>
-            <version>${camel.karaf.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.camel.karaf</groupId>
             <artifactId>camel-blueprint-main</artifactId>
-            <version>${camel.karaf.version}</version>
         </dependency>
 
         <!-- logging -->
@@ -91,7 +97,6 @@
         <dependency>
             <groupId>org.apache.camel.karaf</groupId>
             <artifactId>camel-test-blueprint</artifactId>
-            <version>${camel.karaf.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>


[camel-examples] 06/08: Camel-example-sql-blueprint: Usage of camel-karaf-bom

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

commit 9c197092cfb7c6a33e46f360eb087f6a83146b2b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 31 12:52:56 2020 +0200

    Camel-example-sql-blueprint: Usage of camel-karaf-bom
---
 examples/camel-example-sql-blueprint/pom.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/examples/camel-example-sql-blueprint/pom.xml b/examples/camel-example-sql-blueprint/pom.xml
index 87c2625..a101f42 100644
--- a/examples/camel-example-sql-blueprint/pom.xml
+++ b/examples/camel-example-sql-blueprint/pom.xml
@@ -52,6 +52,14 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <!-- Add Camel Karaf BOM -->
+            <dependency>
+                <groupId>org.apache.camel.karaf</groupId>
+                <artifactId>camel-karaf-bom</artifactId>
+                <version>${camel.karaf.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -61,7 +69,6 @@
         <dependency>
             <groupId>org.apache.camel.karaf</groupId>
             <artifactId>camel-blueprint</artifactId>
-            <version>${camel.karaf.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>


[camel-examples] 08/08: Use camel.karaf.version everywhere

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

commit 0abf6fc60a603e98c305a3881dd52e1db7578d05
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 31 12:58:36 2020 +0200

    Use camel.karaf.version everywhere
---
 examples/camel-example-ehcache-blueprint/pom.xml | 2 +-
 examples/camel-example-mybatis/pom.xml           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/camel-example-ehcache-blueprint/pom.xml b/examples/camel-example-ehcache-blueprint/pom.xml
index 13d9b24..d28ac41 100644
--- a/examples/camel-example-ehcache-blueprint/pom.xml
+++ b/examples/camel-example-ehcache-blueprint/pom.xml
@@ -58,7 +58,7 @@
             <dependency>
                 <groupId>org.apache.camel.karaf</groupId>
                 <artifactId>camel-karaf-bom</artifactId>
-                <version>${project.version}</version>
+                <version>${camel.karaf.version}</version>
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
diff --git a/examples/camel-example-mybatis/pom.xml b/examples/camel-example-mybatis/pom.xml
index 2ee2b54..fc49436 100644
--- a/examples/camel-example-mybatis/pom.xml
+++ b/examples/camel-example-mybatis/pom.xml
@@ -53,7 +53,7 @@
             <dependency>
                 <groupId>org.apache.camel.karaf</groupId>
                 <artifactId>camel-karaf-bom</artifactId>
-                <version>${project.version}</version>
+                <version>${camel.karaf.version}</version>
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>


[camel-examples] 01/08: Camel-example-ehcache-blueprint: Usage of camel-karaf-bom

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

commit 9db3a849aa59be66ae0a446cc3db4457503f75d8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 31 12:35:05 2020 +0200

    Camel-example-ehcache-blueprint: Usage of camel-karaf-bom
---
 examples/camel-example-ehcache-blueprint/pom.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/examples/camel-example-ehcache-blueprint/pom.xml b/examples/camel-example-ehcache-blueprint/pom.xml
index f709452..13d9b24 100644
--- a/examples/camel-example-ehcache-blueprint/pom.xml
+++ b/examples/camel-example-ehcache-blueprint/pom.xml
@@ -54,6 +54,14 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <!-- Add Camel Karaf BOM -->
+            <dependency>
+                <groupId>org.apache.camel.karaf</groupId>
+                <artifactId>camel-karaf-bom</artifactId>
+                <version>${project.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -63,7 +71,6 @@
         <dependency>
             <groupId>org.apache.camel.karaf</groupId>
             <artifactId>camel-blueprint</artifactId>
-            <version>${camel.karaf.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>


[camel-examples] 03/08: Camel-example-mybatis: Usage of camel-karaf-bom

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

commit 6673484d1f1e71d77d716c1c5fb812e07687bb8e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 31 12:37:26 2020 +0200

    Camel-example-mybatis: Usage of camel-karaf-bom
---
 examples/camel-example-mybatis/pom.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/examples/camel-example-mybatis/pom.xml b/examples/camel-example-mybatis/pom.xml
index d3d00be..2ee2b54 100644
--- a/examples/camel-example-mybatis/pom.xml
+++ b/examples/camel-example-mybatis/pom.xml
@@ -49,6 +49,14 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <!-- Add Camel Karaf BOM -->
+            <dependency>
+                <groupId>org.apache.camel.karaf</groupId>
+                <artifactId>camel-karaf-bom</artifactId>
+                <version>${project.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -58,7 +66,6 @@
         <dependency>
             <groupId>org.apache.camel.karaf</groupId>
             <artifactId>camel-blueprint</artifactId>
-            <version>${camel.karaf.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>


[camel-examples] 05/08: Camel-example-olingo4: Usage of camel-karaf-bom

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

commit 35bbefa2c40f08a7a4fbb8528882c2a28a556736
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 31 12:51:16 2020 +0200

    Camel-example-olingo4: Usage of camel-karaf-bom
---
 examples/camel-example-olingo4-blueprint/pom.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/examples/camel-example-olingo4-blueprint/pom.xml b/examples/camel-example-olingo4-blueprint/pom.xml
index c3763f7..55e3a7f 100644
--- a/examples/camel-example-olingo4-blueprint/pom.xml
+++ b/examples/camel-example-olingo4-blueprint/pom.xml
@@ -47,6 +47,14 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <!-- Add Camel Karaf BOM -->
+            <dependency>
+                <groupId>org.apache.camel.karaf</groupId>
+                <artifactId>camel-karaf-bom</artifactId>
+                <version>${camel.karaf.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -54,7 +62,6 @@
         <dependency>
             <groupId>org.apache.camel.karaf</groupId>
             <artifactId>camel-blueprint</artifactId>
-            <version>${camel.karaf.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>


[camel-examples] 04/08: Camel-example-netty-http: Usage of camel-karaf-bom

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

commit 2b14b936ec2915e503b075db6015454512a76998
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 31 12:38:40 2020 +0200

    Camel-example-netty-http: Usage of camel-karaf-bom
---
 examples/camel-example-netty-http/pom.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/examples/camel-example-netty-http/pom.xml b/examples/camel-example-netty-http/pom.xml
index efabdbb..6f3daeb 100644
--- a/examples/camel-example-netty-http/pom.xml
+++ b/examples/camel-example-netty-http/pom.xml
@@ -51,6 +51,14 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <!-- Add Camel Karaf BOM -->
+            <dependency>
+                <groupId>org.apache.camel.karaf</groupId>
+                <artifactId>camel-karaf-bom</artifactId>
+                <version>${camel.karaf.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -58,7 +66,6 @@
         <dependency>
             <groupId>org.apache.camel.karaf</groupId>
             <artifactId>camel-blueprint</artifactId>
-            <version>${camel.karaf.version}</version>
         </dependency>
 
         <dependency>