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

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


    omit 0dae77b  Bump the maven group across 27 directories with 2 updates
    omit 8c0c610  Bump org.assertj:assertj-core
    omit 8ed9eb8  Bump the maven group across 22 directories with 1 update
    omit 57500b3  Bump the maven group across 5 directories with 4 updates
    omit 017fdf1  Next is 3.13.0
     add 570a03b  Next is 3.13.0
     add e6ffaab  Bump the maven group across 5 directories with 4 updates
     add dfb4f91  Bump the maven group across 22 directories with 1 update
     add dfd2745  Bump org.assertj:assertj-core
     add 5016ac3  Bump the maven group across 27 directories with 2 updates
     add 2d9f256  Add artemis to elasticsearch example project
     add 38e64a3  Migrate from deprecated QuarkusTestResource to 
WithTestResource
     add cd40eb6  Upgrade to Quarkus Platform 3.13.0
     add 8e3f606  Tag 3.13.0
     new e29d6b1  Next is 3.14.0

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   (0dae77b)
            \
             N -- N -- N   refs/heads/camel-quarkus-main (e29d6b1)

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:
 artemis-elasticsearch/README.adoc                  | 102 ++++++++++++++++++
 .../eclipse-formatter-config.xml                   |   0
 .../pom.xml                                        | 115 +++++++++++++--------
 .../src/main/java/org/acme/Routes.java             |  71 +++++++++++++
 .../src/main/resources/application.properties      |  12 +--
 .../src/test/java/org/acme/ElasticSearchIT.java    |   2 +-
 .../src/test/java/org/acme/ElasticSearchTest.java  |  57 +++++-----
 .../org/acme/resource/CustomPahoTestResource.java  |  38 +++----
 .../acme/resource/ElasticSearchTestResource.java   |  63 +++++++++++
 aws-lambda/pom.xml                                 |   6 +-
 cluster-leader-election/pom.xml                    |   6 +-
 cxf-soap/pom.xml                                   |   6 +-
 docs/modules/ROOT/attachments/examples.json        |   5 +
 file-bindy-ftp/pom.xml                             |   6 +-
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml  |  12 +--
 file-bindy-ftp/src/main/kubernetes/openshift.yml   |  12 +--
 .../java/org/acme/bindy/ftp/FileToFtpTest.java     |   4 +-
 file-split-log-xml/pom.xml                         |   6 +-
 health/pom.xml                                     |   6 +-
 http-log/pom.xml                                   |   6 +-
 jdbc-datasource/pom.xml                            |   6 +-
 .../src/test/java/org/acme/jdbc/JdbcTest.java      |   6 +-
 jms-jpa/pom.xml                                    |   6 +-
 jms-jpa/src/test/java/org/acme/JtaTest.java        |   6 +-
 jpa-idempotent-repository/pom.xml                  |   6 +-
 .../src/main/kubernetes/kubernetes.yml             |  12 +--
 .../src/main/kubernetes/openshift.yml              |  14 +--
 .../repository/JpaIdempotentRepositoryTest.java    |   4 +-
 jta-jpa/pom.xml                                    |   6 +-
 jta-jpa/src/test/java/org/acme/JtaTest.java        |   4 +-
 kafka/pom.xml                                      |   6 +-
 kamelet-chucknorris/pom.xml                        |   6 +-
 message-bridge/pom.xml                             |   6 +-
 .../acme/message/bridge/MessageBridgeITCase.java   |   6 +-
 observability/pom.xml                              |   6 +-
 openapi-contract-first/pom.xml                     |   6 +-
 platform-http-security-keycloak/pom.xml            |   6 +-
 rest-json/pom.xml                                  |   6 +-
 saga/pom.xml                                       |   6 +-
 saga/saga-app/pom.xml                              |   2 +-
 saga/saga-flight-service/pom.xml                   |   2 +-
 saga/saga-payment-service/pom.xml                  |   2 +-
 saga/saga-train-service/pom.xml                    |   2 +-
 timer-log-kotlin/pom.xml                           |   6 +-
 timer-log-main/pom.xml                             |   6 +-
 timer-log/pom.xml                                  |   6 +-
 vertx-websocket-chat/pom.xml                       |   6 +-
 47 files changed, 472 insertions(+), 219 deletions(-)
 create mode 100644 artemis-elasticsearch/README.adoc
 copy {aws-lambda => artemis-elasticsearch}/eclipse-formatter-config.xml (100%)
 copy {kamelet-chucknorris => artemis-elasticsearch}/pom.xml (82%)
 create mode 100644 artemis-elasticsearch/src/main/java/org/acme/Routes.java
 copy {rest-json => 
artemis-elasticsearch}/src/main/resources/application.properties (82%)
 copy jms-jpa/src/test/java/org/acme/JtaIT.java => 
artemis-elasticsearch/src/test/java/org/acme/ElasticSearchIT.java (94%)
 copy jta-jpa/src/test/java/org/acme/JtaTest.java => 
artemis-elasticsearch/src/test/java/org/acme/ElasticSearchTest.java (50%)
 copy 
message-bridge/src/test/java/org/acme/message/bridge/resource/IBMMQTestResource.java
 => 
artemis-elasticsearch/src/test/java/org/acme/resource/CustomPahoTestResource.java
 (50%)
 create mode 100644 
artemis-elasticsearch/src/test/java/org/acme/resource/ElasticSearchTestResource.java

Reply via email to