You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2020/10/01 16:46:32 UTC

[camel-quarkus-examples] branch master updated (04b0cd9 -> ffd2ee3)

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

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


    from 04b0cd9  Set camel-quarkus.version to 1.1.0
     new c062556  Build Camel Quarkus for the camel-quarkus-master branch
     new ffd2ee3  Sync the properties with Camel Quarkus 1.1.0

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:
 .github/workflows/ci-build.yaml | 12 ++++++++++--
 file-split-log-xml/pom.xml      |  2 +-
 health/pom.xml                  |  4 ++--
 http-log/pom.xml                |  4 ++--
 observability/pom.xml           |  4 ++--
 rest-json/pom.xml               |  4 ++--
 timer-log-cdi/pom.xml           |  4 ++--
 timer-log-kotlin/pom.xml        |  6 +++---
 timer-log-main/pom.xml          |  4 ++--
 timer-log-spring/pom.xml        |  4 ++--
 timer-log-xml/pom.xml           |  4 ++--
 timer-log/pom.xml               |  4 ++--
 12 files changed, 32 insertions(+), 24 deletions(-)


[camel-quarkus-examples] 01/02: Build Camel Quarkus for the camel-quarkus-master branch

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

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

commit c06255644975044c1dff463d02d5428c55248a7f
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Thu Oct 1 15:07:48 2020 +0200

    Build Camel Quarkus for the camel-quarkus-master branch
---
 .github/workflows/ci-build.yaml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index 344411f..2136c16 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -58,6 +58,13 @@ jobs:
           version: '11'
       - name: Checkout
         uses: actions/checkout@v2
+      - name: Build Camel Quarkus
+        if: github.ref == 'refs/heads/camel-quarkus-master' || github.base_ref == 'camel-quarkus-master'
+        run: |
+          git clone --depth 1 --branch master https://github.com/apache/camel-quarkus.git \
+            && cd camel-quarkus \
+            && echo "Current Camel Quarkus commit:" $(git rev-parse HEAD) \
+            && ./mvnw ${MAVEN_ARGS} clean install -DskipTests -Denforcer.skip -Dquarkus.build.skip
       - name: mvn license:check formatter:validate impsort:check
         run: |
           ./mvnw-for-each.sh ${MAVEN_ARGS} \


[camel-quarkus-examples] 02/02: Sync the properties with Camel Quarkus 1.1.0

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

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

commit ffd2ee3fd03aade839c4b3f28cd51a850b27d7b7
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Thu Oct 1 17:17:51 2020 +0200

    Sync the properties with Camel Quarkus 1.1.0
---
 .github/workflows/ci-build.yaml | 5 +++--
 file-split-log-xml/pom.xml      | 2 +-
 health/pom.xml                  | 4 ++--
 http-log/pom.xml                | 4 ++--
 observability/pom.xml           | 4 ++--
 rest-json/pom.xml               | 4 ++--
 timer-log-cdi/pom.xml           | 4 ++--
 timer-log-kotlin/pom.xml        | 6 +++---
 timer-log-main/pom.xml          | 4 ++--
 timer-log-spring/pom.xml        | 4 ++--
 timer-log-xml/pom.xml           | 4 ++--
 timer-log/pom.xml               | 4 ++--
 12 files changed, 25 insertions(+), 24 deletions(-)

diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index 2136c16..2f01f93 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -65,12 +65,13 @@ jobs:
             && cd camel-quarkus \
             && echo "Current Camel Quarkus commit:" $(git rev-parse HEAD) \
             && ./mvnw ${MAVEN_ARGS} clean install -DskipTests -Denforcer.skip -Dquarkus.build.skip
-      - name: mvn license:check formatter:validate impsort:check
+      - name: mvn license:check formatter:validate impsort:check cq:sync-example-properties
         run: |
           ./mvnw-for-each.sh ${MAVEN_ARGS} \
             license:check \
             net.revelc.code.formatter:formatter-maven-plugin:validate \
-            net.revelc.code:impsort-maven-plugin:check
+            net.revelc.code:impsort-maven-plugin:check \
+            org.l2x6.cq:cq-maven-plugin:0.21.0:sync-example-properties
       - name: mvn clean verify -Pnative,docker
         run: |
           ./mvnw-for-each.sh ${MAVEN_ARGS} clean verify -Pnative,docker
diff --git a/file-split-log-xml/pom.xml b/file-split-log-xml/pom.xml
index d147c82..58c7d3f 100644
--- a/file-split-log-xml/pom.xml
+++ b/file-split-log-xml/pom.xml
@@ -29,7 +29,7 @@
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/health/pom.xml b/health/pom.xml
index 2824992..2c5847e 100644
--- a/health/pom.xml
+++ b/health/pom.xml
@@ -25,11 +25,11 @@
     <version>1.2.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Health</name>
-    <description>Camel Quarkus Example :: Health Check</description>
+    <description>Camel Quarkus Example :: Health Check</description>
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/http-log/pom.xml b/http-log/pom.xml
index 294e5ed..d76edca 100644
--- a/http-log/pom.xml
+++ b/http-log/pom.xml
@@ -25,11 +25,11 @@
     <version>1.2.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: HTTP Log</name>
-    <description>Camel Quarkus Example :: HTTP to Log</description>
+    <description>Camel Quarkus Example :: HTTP to Log</description>
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/observability/pom.xml b/observability/pom.xml
index b82824c..da1a9c0 100644
--- a/observability/pom.xml
+++ b/observability/pom.xml
@@ -25,11 +25,11 @@
     <version>1.2.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Observability</name>
-    <description>Camel Quarkus Example :: Observability</description>
+    <description>Camel Quarkus Example :: Observability</description>
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/rest-json/pom.xml b/rest-json/pom.xml
index ab7edf4..4fd0186 100644
--- a/rest-json/pom.xml
+++ b/rest-json/pom.xml
@@ -25,11 +25,11 @@
     <version>1.2.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Rest Json</name>
-    <description>Camel Quarkus Example :: Rest Json</description>
+    <description>Camel Quarkus Example :: Rest Json</description>
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/timer-log-cdi/pom.xml b/timer-log-cdi/pom.xml
index ef3eea3..a062832 100644
--- a/timer-log-cdi/pom.xml
+++ b/timer-log-cdi/pom.xml
@@ -25,11 +25,11 @@
     <version>1.2.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log CDI</name>
-    <description>Camel Quarkus Example :: Timer to Log CDI</description>
+    <description>Camel Quarkus Example :: Timer to Log CDI</description>
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/timer-log-kotlin/pom.xml b/timer-log-kotlin/pom.xml
index f878954..a880635 100644
--- a/timer-log-kotlin/pom.xml
+++ b/timer-log-kotlin/pom.xml
@@ -25,12 +25,12 @@
     <version>1.2.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log Kotlin</name>
-    <description>Camel Quarkus Example :: Timer to Log Kotlin</description>
+    <description>Camel Quarkus Example :: Timer to Log Kotlin</description>
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
-        <kotlin.version>1.3.21</kotlin.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
+        <kotlin.version>1.3.72</kotlin.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/timer-log-main/pom.xml b/timer-log-main/pom.xml
index 1573dd0..ae7c8d3 100644
--- a/timer-log-main/pom.xml
+++ b/timer-log-main/pom.xml
@@ -25,11 +25,11 @@
     <version>1.2.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log Main</name>
-    <description>Camel Quarkus Example :: Timer to Log Main</description>
+    <description>Camel Quarkus Example :: Timer to Log Main</description>
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/timer-log-spring/pom.xml b/timer-log-spring/pom.xml
index 7e6386d..637933a 100644
--- a/timer-log-spring/pom.xml
+++ b/timer-log-spring/pom.xml
@@ -25,11 +25,11 @@
     <version>1.2.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log Spring</name>
-    <description>Camel Quarkus Example :: Timer to Log Spring</description>
+    <description>Camel Quarkus Example :: Timer to Log Spring</description>
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/timer-log-xml/pom.xml b/timer-log-xml/pom.xml
index 0ae4d96..f723283 100644
--- a/timer-log-xml/pom.xml
+++ b/timer-log-xml/pom.xml
@@ -25,11 +25,11 @@
     <version>1.2.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log XML</name>
-    <description>Camel Quarkus Example :: Timer to Log XML</description>
+    <description>Camel Quarkus Example :: Timer to Log XML</description>
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/timer-log/pom.xml b/timer-log/pom.xml
index 436cc7e..e6b5013 100644
--- a/timer-log/pom.xml
+++ b/timer-log/pom.xml
@@ -25,11 +25,11 @@
     <version>1.2.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log</name>
-    <description>Camel Quarkus Example :: Timer to Log</description>
+    <description>Camel Quarkus Example :: Timer to Log</description>
 
     <properties>
         <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.8.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>