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

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


 discard b533d9a  Upgrade to Camel Quarkus 1.8.0-SNAPSHOT
     add f75e2df  Replace usage of xml-routes property with 
routes-include-pattern
     add 7e5b1d3  Remove redundant remove-unused-beans property
     add cbefdff  Review usage of quarkus.ssl.native in example projects
     add a45b33c  Adjust references to the runner JAR for the fast-jar format
     add 4401f0c  Remove last occurrence of remove-unused-beans property
     add a129dfe  Add example to demo file, bindy & sftp extensions
     add d15c8c5  Add tests to example projects apache/camel-quarkus#1501
     add fd947e3  Add a note to file-bindy-ftp README about k8s client and self 
signed certs
     add befb324  Restore ExampleResource to http-log example as it is 
referenced in the README
     add 124d345  Speed up the CI build apache/camel-quarkus#2147
     add 6b6f5eb  Use AbstractHealthCheck for custom health checks
     add f7a5596  Tidy up health example application.properties
     add 861834b  Fix typo in health config property heath -> health
     add a7a3bcd  Improve description of health check output in observability 
example
     add 64c094c  Upgrade to Camel Quarkus 1.8.0
     add 0fb86f7  Use 1.8.0-SNAPSHOT as examples version
     new 453c4b8  Upgrade to Camel Quarkus 1.9.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   (b533d9a)
            \
             N -- N -- N   refs/heads/camel-quarkus-master (453c4b8)

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:
 .asf.yaml => .github/test-categories.yaml          |  32 ++--
 .github/workflows/ci-build.yaml                    |  87 ++++++++++-
 docs/modules/ROOT/attachments/examples.json        |   5 +
 file-bindy-ftp/README.adoc                         | 172 +++++++++++++++++++++
 {health => file-bindy-ftp}/pom.xml                 | 108 +++++++++++--
 .../main/java/org/apache/camel/example/Book.java   |  87 +++++++++++
 .../org/apache/camel/example/BookGenerator.java    |  86 +++++++++++
 .../main/java/org/apache/camel/example/Routes.java |  59 +++++++
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml  |  83 ++++++++++
 file-bindy-ftp/src/main/kubernetes/openshift.yml   |  83 ++++++++++
 .../src/main/resources/application.properties      |  62 ++++++++
 .../java/org/apache/camel/example/FileToFtpIT.java |   5 +-
 .../org/apache/camel/example/FileToFtpTest.java    |  66 ++++++++
 .../org/apache/camel/example/FtpTestResource.java  |  71 +++++++++
 file-split-log-xml/README.adoc                     |   2 +-
 file-split-log-xml/pom.xml                         |  47 +++++-
 .../src/main/resources/application.properties      |   7 +-
 .../org/acme/filereader/FileSplitLogXmlIT.java     |   5 +-
 .../org/acme/filereader/FileSplitLogXmlTest.java   |  50 ++++++
 health/README.adoc                                 |   2 +-
 health/pom.xml                                     |  26 ++--
 health/src/main/resources/application.properties   |  21 +--
 .../src/test/java/org/acme/health/HealthIT.java    |   4 +-
 .../java/org/acme/health/HealthTest.java}          |  26 ++--
 http-log/README.adoc                               |   2 +-
 http-log/pom.xml                                   |  50 +++++-
 .../main/java/org/acme/http/ExampleResource.java   |   2 +-
 .../main/resources/META-INF/resources/index.html   | 170 --------------------
 http-log/src/main/resources/application.properties |   1 +
 .../src/test/java/org/acme/http/HttpLogIT.java     |   4 +-
 .../src/test/java/org/acme/http/HttpLogTest.java   |  54 +++++++
 observability/README.adoc                          |   6 +-
 observability/pom.xml                              |   6 +-
 .../health/camel/CustomLivenessCheck.java          |   9 +-
 .../health/camel/CustomReadinessCheck.java         |   9 +-
 .../org/acme/observability/ObservabilityTest.java  |   3 +-
 rest-json/README.adoc                              |   2 +-
 rest-json/pom.xml                                  |   6 +-
 .../src/main/resources/application.properties      |   1 -
 timer-log-cdi/README.adoc                          |   2 +-
 timer-log-cdi/pom.xml                              |  47 +++++-
 .../src/main/resources/application.properties      |   5 +-
 .../test/java/org/acme/timer/TimerLogCdiIT.java    |   5 +-
 .../test/java/org/acme/timer/TimerLogCdiTest.java  |  49 ++++++
 timer-log-kotlin/README.adoc                       |   2 +-
 timer-log-kotlin/pom.xml                           |  57 +++++--
 .../src/main/resources/application.properties      |   1 +
 .../kotlin/org/acme/timer/TimerLogKotlin.kt}       |  34 ++--
 .../test/kotlin/org/acme/timer/TimerLogKotlinIT.kt |   8 +-
 timer-log-main/README.adoc                         |   2 +-
 timer-log-main/pom.xml                             |  89 +++++++++--
 .../src/main/java/org/acme/timer/Main.java         |  28 ++--
 .../src/main/resources/application.properties      |   5 +-
 .../test/java/org/acme/timer/TimerLogMainIT.java   |   5 +-
 .../test/java/org/acme/timer/TimerLogMainTest.java | 106 +++++++++++++
 timer-log-spring/README.adoc                       |   2 +-
 timer-log-spring/pom.xml                           |  47 +++++-
 .../src/main/resources/application.properties      |   1 +
 .../test/java/org/acme/timer/TimerLogSpringIT.java |   5 +-
 .../java/org/acme/timer/TimerLogSpringTest.java    |  49 ++++++
 timer-log-xml/README.adoc                          |   2 +-
 timer-log-xml/pom.xml                              |  51 +++++-
 .../src/main/resources/application.properties      |   3 +-
 .../test/java/org/acme/timer/TimerLogXmlTest.java  |  49 ++++++
 .../test/java/org/acme/timer/TimerLogXmlXmlIT.java |   5 +-
 timer-log/README.adoc                              |   2 +-
 timer-log/pom.xml                                  |  43 +++++-
 .../src/main/resources/application.properties      |   2 +-
 .../src/test/java/org/acme/timer/TimerLogIT.java   |   5 +-
 .../src/test/java/org/acme/timer/TimerLogTest.java |  49 ++++++
 70 files changed, 1920 insertions(+), 361 deletions(-)
 copy .asf.yaml => .github/test-categories.yaml (64%)
 create mode 100644 file-bindy-ftp/README.adoc
 copy {health => file-bindy-ftp}/pom.xml (73%)
 create mode 100644 
file-bindy-ftp/src/main/java/org/apache/camel/example/Book.java
 create mode 100644 
file-bindy-ftp/src/main/java/org/apache/camel/example/BookGenerator.java
 create mode 100644 
file-bindy-ftp/src/main/java/org/apache/camel/example/Routes.java
 create mode 100644 file-bindy-ftp/src/main/kubernetes/kubernetes.yml
 create mode 100644 file-bindy-ftp/src/main/kubernetes/openshift.yml
 create mode 100644 file-bindy-ftp/src/main/resources/application.properties
 copy observability/src/test/java/org/acme/observability/ObservabilityIT.java 
=> file-bindy-ftp/src/test/java/org/apache/camel/example/FileToFtpIT.java (90%)
 create mode 100644 
file-bindy-ftp/src/test/java/org/apache/camel/example/FileToFtpTest.java
 create mode 100644 
file-bindy-ftp/src/test/java/org/apache/camel/example/FtpTestResource.java
 copy observability/src/test/java/org/acme/observability/ObservabilityIT.java 
=> file-split-log-xml/src/test/java/org/acme/filereader/FileSplitLogXmlIT.java 
(90%)
 create mode 100644 
file-split-log-xml/src/test/java/org/acme/filereader/FileSplitLogXmlTest.java
 copy observability/src/test/java/org/acme/observability/ObservabilityIT.java 
=> health/src/test/java/org/acme/health/HealthIT.java (90%)
 copy health/src/{main/java/org/acme/health/MyRouteBuilder.java => 
test/java/org/acme/health/HealthTest.java} (51%)
 delete mode 100644 http-log/src/main/resources/META-INF/resources/index.html
 copy observability/src/test/java/org/acme/observability/ObservabilityIT.java 
=> http-log/src/test/java/org/acme/http/HttpLogIT.java (90%)
 create mode 100644 http-log/src/test/java/org/acme/http/HttpLogTest.java
 copy observability/src/test/java/org/acme/observability/ObservabilityIT.java 
=> timer-log-cdi/src/test/java/org/acme/timer/TimerLogCdiIT.java (90%)
 create mode 100644 
timer-log-cdi/src/test/java/org/acme/timer/TimerLogCdiTest.java
 copy timer-log-kotlin/src/{main/kotlin/org/acme/timer/routes.kt => 
test/kotlin/org/acme/timer/TimerLogKotlin.kt} (52%)
 copy file-split-log-xml/src/main/java/org/acme/filereader/DummyClass.java => 
timer-log-kotlin/src/test/kotlin/org/acme/timer/TimerLogKotlinIT.kt (85%)
 copy observability/src/test/java/org/acme/observability/ObservabilityIT.java 
=> timer-log-main/src/test/java/org/acme/timer/TimerLogMainIT.java (90%)
 create mode 100644 
timer-log-main/src/test/java/org/acme/timer/TimerLogMainTest.java
 copy observability/src/test/java/org/acme/observability/ObservabilityIT.java 
=> timer-log-spring/src/test/java/org/acme/timer/TimerLogSpringIT.java (90%)
 create mode 100644 
timer-log-spring/src/test/java/org/acme/timer/TimerLogSpringTest.java
 create mode 100644 
timer-log-xml/src/test/java/org/acme/timer/TimerLogXmlTest.java
 copy observability/src/test/java/org/acme/observability/ObservabilityIT.java 
=> timer-log-xml/src/test/java/org/acme/timer/TimerLogXmlXmlIT.java (90%)
 copy observability/src/test/java/org/acme/observability/ObservabilityIT.java 
=> timer-log/src/test/java/org/acme/timer/TimerLogIT.java (90%)
 create mode 100644 timer-log/src/test/java/org/acme/timer/TimerLogTest.java

Reply via email to