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

[camel-quarkus-examples] branch camel-quarkus-master updated (4f86957 -> 8da7908)

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

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


    omit 4f86957  Update to Camel Quarkus 1.2.0-SNAPSHOT
     add 33a54f0  Structure the READMEs, generate adoc pages to be able to generate the table in the Camel Quarkus docs
     add 1fd0268  Add useful links to the README
     add 4df88b8  Add an empty nav.adoc file to make Antora happy
     add 094d790  Add feedback paragraph to the READMEs
     add 3a2f05b  Add index.adoc to make Antora happy
     add ca53ad9  Replacing file resolve with classpath resolver.
     add 28344e6  Upgrade to cq-maven-plugin 0.23.2, use the right directory for example pages
     new 8da7908  Next is 1.3.0-SNAPSHOT

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   (4f86957)
            \
             N -- N -- N   refs/heads/camel-quarkus-master (8da7908)

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:
 .github/workflows/ci-build.yaml                    |  2 +-
 README.adoc                                        | 12 +++++++
 README.md                                          |  8 -----
 .asf.yaml => docs/antora.yml                       | 15 ++------
 docs/modules/ROOT/nav.adoc                         |  1 +
 .../ROOT/pages/examples/file-split-log-xml.adoc    |  4 +++
 docs/modules/ROOT/pages/examples/health.adoc       |  4 +++
 docs/modules/ROOT/pages/examples/http-log.adoc     |  4 +++
 .../modules/ROOT/pages/examples/observability.adoc |  4 +++
 docs/modules/ROOT/pages/examples/rest-json.adoc    |  4 +++
 .../modules/ROOT/pages/examples/timer-log-cdi.adoc |  4 +++
 .../ROOT/pages/examples/timer-log-kotlin.adoc      |  4 +++
 .../ROOT/pages/examples/timer-log-main.adoc        |  4 +++
 .../ROOT/pages/examples/timer-log-spring.adoc      |  4 +++
 .../modules/ROOT/pages/examples/timer-log-xml.adoc |  4 +++
 docs/modules/ROOT/pages/examples/timer-log.adoc    |  4 +++
 docs/modules/ROOT/pages/index.adoc                 | 17 +++++++++
 file-split-log-xml/README.adoc                     | 22 +++++++-----
 file-split-log-xml/pom.xml                         |  6 ++--
 health/README.adoc                                 | 21 ++++-------
 health/pom.xml                                     |  6 ++--
 http-log/README.adoc                               | 11 ++++--
 http-log/pom.xml                                   |  6 ++--
 .../main/java/org/acme/http/ExampleResource.java   |  8 +++++
 mvnw-for-each.sh                                   |  3 ++
 observability/README.adoc                          |  9 +++--
 observability/pom.xml                              |  6 ++--
 rest-json/README.adoc                              |  9 ++++-
 rest-json/pom.xml                                  |  6 ++--
 timer-log-cdi/README.adoc                          | 11 +++---
 timer-log-cdi/pom.xml                              |  6 ++--
 {timer-log-main => timer-log-kotlin}/README.adoc   | 10 ++++--
 timer-log-kotlin/pom.xml                           |  6 ++--
 timer-log-main/README.adoc                         | 37 ++++++++++++++-----
 timer-log-main/pom.xml                             |  6 ++--
 .../src/main/java/org/acme/timer/Main.java         | 41 +++++++++++++++++++++-
 .../src/main/java/org/acme/timer/TimerRoute.java   |  8 ++++-
 timer-log-spring/README.adoc                       | 11 +++---
 timer-log-spring/pom.xml                           |  6 ++--
 timer-log-xml/README.adoc                          | 11 +++---
 timer-log-xml/pom.xml                              |  6 ++--
 .../src/main/resources/application.properties      |  5 ++-
 timer-log/README.adoc                              | 10 ++++--
 timer-log/pom.xml                                  |  6 ++--
 44 files changed, 280 insertions(+), 112 deletions(-)
 create mode 100644 README.adoc
 delete mode 100644 README.md
 copy .asf.yaml => docs/antora.yml (77%)
 create mode 100644 docs/modules/ROOT/nav.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/file-split-log-xml.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/health.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/http-log.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/observability.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/rest-json.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/timer-log-cdi.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/timer-log-kotlin.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/timer-log-main.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/timer-log-spring.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/timer-log-xml.adoc
 create mode 100644 docs/modules/ROOT/pages/examples/timer-log.adoc
 create mode 100644 docs/modules/ROOT/pages/index.adoc
 copy {timer-log-main => timer-log-kotlin}/README.adoc (85%)


[camel-quarkus-examples] 01/01: Next is 1.3.0-SNAPSHOT

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

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

commit 8da79081cdeddbf80882000857b88d5fca24ddcc
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Oct 15 17:11:10 2020 +0100

    Next is 1.3.0-SNAPSHOT
---
 file-split-log-xml/pom.xml | 6 +++---
 health/pom.xml             | 6 +++---
 http-log/pom.xml           | 6 +++---
 observability/pom.xml      | 6 +++---
 rest-json/pom.xml          | 6 +++---
 timer-log-cdi/pom.xml      | 6 +++---
 timer-log-kotlin/pom.xml   | 6 +++---
 timer-log-main/pom.xml     | 6 +++---
 timer-log-spring/pom.xml   | 6 +++---
 timer-log-xml/pom.xml      | 6 +++---
 timer-log/pom.xml          | 6 +++---
 11 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/file-split-log-xml/pom.xml b/file-split-log-xml/pom.xml
index 58c7d3f..8f5e1ed 100644
--- a/file-split-log-xml/pom.xml
+++ b/file-split-log-xml/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-file-log-xml</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: File To Log XML DSL</name>
     <description>Camel Quarkus Example :: File To Log XML DSL</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.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 2c5847e..a1febbe 100644
--- a/health/pom.xml
+++ b/health/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-health</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Health</name>
     <description>Camel Quarkus Example :: Health Check</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.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 d76edca..2d0b5e1 100644
--- a/http-log/pom.xml
+++ b/http-log/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-http-log</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: HTTP Log</name>
     <description>Camel Quarkus Example :: HTTP to Log</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.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 da1a9c0..48597e2 100644
--- a/observability/pom.xml
+++ b/observability/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-observability</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Observability</name>
     <description>Camel Quarkus Example :: Observability</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.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 4fd0186..ab324cb 100644
--- a/rest-json/pom.xml
+++ b/rest-json/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-rest-json</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Rest Json</name>
     <description>Camel Quarkus Example :: Rest Json</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.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 a062832..b259e60 100644
--- a/timer-log-cdi/pom.xml
+++ b/timer-log-cdi/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-timer-log-cdi</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log CDI</name>
     <description>Camel Quarkus Example :: Timer to Log CDI</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.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 a880635..730a181 100644
--- a/timer-log-kotlin/pom.xml
+++ b/timer-log-kotlin/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-timer-log-kotlin</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log Kotlin</name>
     <description>Camel Quarkus Example :: Timer to Log Kotlin</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.0.Final</quarkus.version>
         <kotlin.version>1.3.72</kotlin.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
diff --git a/timer-log-main/pom.xml b/timer-log-main/pom.xml
index ae7c8d3..989b120 100644
--- a/timer-log-main/pom.xml
+++ b/timer-log-main/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-timer-log-main</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log Main</name>
     <description>Camel Quarkus Example :: Timer to Log Main</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.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 637933a..394f033 100644
--- a/timer-log-spring/pom.xml
+++ b/timer-log-spring/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-timer-log-spring</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log Spring</name>
     <description>Camel Quarkus Example :: Timer to Log Spring</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.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 f723283..eca3769 100644
--- a/timer-log-xml/pom.xml
+++ b/timer-log-xml/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-timer-log-xml</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log XML</name>
     <description>Camel Quarkus Example :: Timer to Log XML</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.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 e6b5013..3f33d52 100644
--- a/timer-log/pom.xml
+++ b/timer-log/pom.xml
@@ -22,14 +22,14 @@
 
     <artifactId>camel-quarkus-examples-timer-log</artifactId>
     <groupId>org.apache.camel.quarkus.examples</groupId>
-    <version>1.2.0-SNAPSHOT</version>
+    <version>1.3.0-SNAPSHOT</version>
 
     <name>Camel Quarkus :: Examples :: Timer Log</name>
     <description>Camel Quarkus Example :: Timer to Log</description>
 
     <properties>
-        <camel-quarkus.version>1.1.0</camel-quarkus.version>
-        <quarkus.version>1.8.0.Final</quarkus.version>
+        <camel-quarkus.version>1.3.0-SNAPSHOT</camel-quarkus.version>
+        <quarkus.version>1.9.0.Final</quarkus.version>
 
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>