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

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


The following commit(s) were added to refs/heads/master by this push:
     new 512248b  CAMEL-13705: Properties component should work with Eclipse 
MicroProfile Config
512248b is described below

commit 512248b0319970270d42ffe9fc241bfa8c325e3c
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Mon Jul 1 13:01:44 2019 +0200

    CAMEL-13705: Properties component should work with Eclipse MicroProfile 
Config
---
 apache-camel/pom.xml                             | 5 +++++
 apache-camel/src/main/descriptors/common-bin.xml | 1 +
 components/camel-jdbc/pom.xml                    | 2 ++
 components/camel-microprofile-config/pom.xml     | 7 ++++++-
 components/readme.adoc                           | 4 +++-
 parent/pom.xml                                   | 5 +++++
 6 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/apache-camel/pom.xml b/apache-camel/pom.xml
index e7a2b8a..5068a1b 100644
--- a/apache-camel/pom.xml
+++ b/apache-camel/pom.xml
@@ -974,6 +974,11 @@
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
+      <artifactId>camel-microprofile-config</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
       <artifactId>camel-milo</artifactId>
       <version>${project.version}</version>
     </dependency>
diff --git a/apache-camel/src/main/descriptors/common-bin.xml 
b/apache-camel/src/main/descriptors/common-bin.xml
index ab2de78..8a83636 100644
--- a/apache-camel/src/main/descriptors/common-bin.xml
+++ b/apache-camel/src/main/descriptors/common-bin.xml
@@ -215,6 +215,7 @@
         <include>org.apache.camel:camel-master</include>
         <include>org.apache.camel:camel-metrics</include>
         <include>org.apache.camel:camel-micrometer</include>
+        <include>org.apache.camel:camel-microprofile-config</include>
         <include>org.apache.camel:camel-milo</include>
         <include>org.apache.camel:camel-mina2</include>
         <include>org.apache.camel:camel-mllp</include>
diff --git a/components/camel-jdbc/pom.xml b/components/camel-jdbc/pom.xml
index c0a5c51..62dc0cd 100644
--- a/components/camel-jdbc/pom.xml
+++ b/components/camel-jdbc/pom.xml
@@ -34,6 +34,8 @@
     <description>Camel JDBC support</description>
 
     <properties>
+        <firstVersion>1.2.0</firstVersion>
+        <label>database</label>
     </properties>
 
     <dependencies>
diff --git a/components/camel-microprofile-config/pom.xml 
b/components/camel-microprofile-config/pom.xml
index 0f64b79..f939abc 100644
--- a/components/camel-microprofile-config/pom.xml
+++ b/components/camel-microprofile-config/pom.xml
@@ -31,7 +31,12 @@
     <packaging>jar</packaging>
 
     <name>Camel :: MicroProfile Config</name>
-    <description>Camel Eclipse MicroProfile Config</description>
+    <description>Bridging Eclipse MicroProfile Config with Camel 
properties</description>
+
+    <properties>
+        <firstVersion>3.0.0</firstVersion>
+        <label>microservice</label>
+    </properties>
 
     <dependencies>
 
diff --git a/components/readme.adoc b/components/readme.adoc
index 8ac82b7..7750e56 100644
--- a/components/readme.adoc
+++ b/components/readme.adoc
@@ -1050,7 +1050,7 @@ Number of Languages: 17 in 11 JAR artifacts (0 deprecated)
 ==== Miscellaneous Components
 
 // others: START
-Number of Miscellaneous Components: 31 in 31 JAR artifacts (0 deprecated)
+Number of Miscellaneous Components: 32 in 32 JAR artifacts (0 deprecated)
 
 [width="100%",cols="4,1,5",options="header"]
 |===
@@ -1072,6 +1072,8 @@ Number of Miscellaneous Components: 31 in 31 JAR 
artifacts (0 deprecated)
 
 | link:camel-lra/src/main/docs/lra.adoc[Lra] (camel-lra) | 2.21 | Camel saga 
binding for Long-Running-Action framework
 
+| 
link:camel-microprofile-config/src/main/docs/microprofile-config.adoc[Microprofile
 Config] (camel-microprofile-config) | 3.0 | Bridging Eclipse MicroProfile 
Config with Camel properties
+
 | link:camel-opentracing/src/main/docs/opentracing.adoc[OpenTracing] 
(camel-opentracing) | 2.19 | Distributed tracing using OpenTracing
 
 | 
link:camel-reactive-executor-vertx/src/main/docs/reactive-executor-vertx.adoc[Reactive
 Executor Vertx] (camel-reactive-executor-vertx) | 3.0 | Reactive Executor for 
camel-core using Vert X
diff --git a/parent/pom.xml b/parent/pom.xml
index 88e8b53..6eec96b 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -1753,6 +1753,11 @@
       </dependency>
       <dependency>
         <groupId>org.apache.camel</groupId>
+        <artifactId>camel-microprofile-config</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
         <artifactId>camel-milo</artifactId>
         <version>${project.version}</version>
       </dependency>

Reply via email to