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

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


    from b7a2130e [INFRA] Set up default rulesets for default and release 
branches
     new 2762b7ed Next is 3.36.0
     new ae228459 Add HTTP PQC Example for Java 21
     new 541afcca Bump the maven group across 8 directories with 1 update
     new 4ee444de Upgrade to Quarkus Platform 3.36.0

The 4 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:
 amqp/pom.xml                                       |   4 +-
 artemis-elasticsearch/pom.xml                      |   4 +-
 aws-lambda/pom.xml                                 |   4 +-
 aws2-s3/pom.xml                                    |   4 +-
 cluster-leader-election/pom.xml                    |   4 +-
 cxf-soap/pom.xml                                   |   4 +-
 data-extract-langchain4j/pom.xml                   |   4 +-
 docs/modules/ROOT/attachments/examples.json        |   5 +
 fhir/pom.xml                                       |   4 +-
 fhir/src/main/kubernetes/kubernetes.yml            |  10 +-
 fhir/src/main/kubernetes/openshift.yml             |  10 +-
 file-bindy-ftp/pom.xml                             |   4 +-
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml  |  12 +-
 file-bindy-ftp/src/main/kubernetes/openshift.yml   |  12 +-
 file-split-log-xml/pom.xml                         |   4 +-
 health/pom.xml                                     |   4 +-
 http-log/pom.xml                                   |   4 +-
 http-pqc-j17/pom.xml                               |   4 +-
 http-pqc-j21/README.adoc                           | 288 +++++++++++++++++++++
 .../eclipse-formatter-config.xml                   |   0
 {artemis-elasticsearch => http-pqc-j21}/pom.xml    | 118 +++++----
 .../main/java/org/acme/http/pqc/PqcCamelRoute.java |  30 ++-
 .../pqc/certificates/CertificateGenerator.java     | 230 ++++++++++++++++
 .../pqc/certificates/SecurityConfiguration.java    |  83 ++++++
 .../src/main/resources/application.properties      |  30 ++-
 .../java/org/acme/http/pqc/AbstractPqcTest.java    | 165 ++++++++++++
 .../test/java/org/acme/http/pqc/PqcOnlyTest.java   |  59 +++++
 .../java/org/acme/http/pqc/PqcWithFallbackIT.java  |  15 +-
 .../org/acme/http/pqc/PqcWithFallbackTest.java     |  59 +++++
 .../org/acme/http/pqc/profiles/PqcOnlyProfile.java |  24 +-
 .../http/pqc/profiles/PqcWithFallbackProfile.java  |  22 +-
 .../src/test}/resources/application.properties     |  14 +-
 jdbc-datasource/pom.xml                            |   4 +-
 jms-jpa/pom.xml                                    |   6 +-
 jpa-idempotent-repository/pom.xml                  |   4 +-
 .../src/main/kubernetes/kubernetes.yml             |  12 +-
 .../src/main/kubernetes/openshift.yml              |  14 +-
 jta-jpa/pom.xml                                    |   4 +-
 kafka/pom.xml                                      |   4 +-
 kamelet-chucknorris/pom.xml                        |   4 +-
 message-bridge/pom.xml                             |   6 +-
 netty-custom-correlation/pom.xml                   |   4 +-
 observability/pom.xml                              |   4 +-
 .../src/main/docker/docker-compose-grafana.yml     |  81 ------
 .../grafana/provisioning/dashboards/dashboards.yml |  30 ---
 .../provisioning/datasources/datasources.yml       |  48 ----
 .../src/main/docker/prometheus/prometheus.yml      |  35 ---
 observability/src/main/docker/tempo/tempo.yml      |  56 ----
 openapi-contract-first/pom.xml                     |   4 +-
 platform-http-security-keycloak/pom.xml            |   4 +-
 quarkus-rest-json/pom.xml                          |   4 +-
 rest-json/pom.xml                                  |   4 +-
 saga/pom.xml                                       |   6 +-
 saga/saga-app/pom.xml                              |   2 +-
 saga/saga-flight-service/pom.xml                   |   2 +-
 saga/saga-integration-tests/pom.xml                |   2 +-
 saga/saga-payment-service/pom.xml                  |   2 +-
 saga/saga-train-service/pom.xml                    |   2 +-
 spring-redis/pom.xml                               |   4 +-
 timer-log-main/pom.xml                             |   4 +-
 timer-log/pom.xml                                  |   4 +-
 variables/pom.xml                                  |   4 +-
 vertx-websocket-chat/pom.xml                       |   4 +-
 63 files changed, 1138 insertions(+), 468 deletions(-)
 create mode 100644 http-pqc-j21/README.adoc
 copy {amqp => http-pqc-j21}/eclipse-formatter-config.xml (100%)
 copy {artemis-elasticsearch => http-pqc-j21}/pom.xml (82%)
 copy {http-pqc-j17 => 
http-pqc-j21}/src/main/java/org/acme/http/pqc/PqcCamelRoute.java (51%)
 create mode 100644 
http-pqc-j21/src/main/java/org/acme/http/pqc/certificates/CertificateGenerator.java
 create mode 100644 
http-pqc-j21/src/main/java/org/acme/http/pqc/certificates/SecurityConfiguration.java
 copy {http-pqc-j17 => http-pqc-j21}/src/main/resources/application.properties 
(65%)
 create mode 100644 
http-pqc-j21/src/test/java/org/acme/http/pqc/AbstractPqcTest.java
 create mode 100644 
http-pqc-j21/src/test/java/org/acme/http/pqc/PqcOnlyTest.java
 copy http-pqc-j17/src/test/java/org/acme/http/pqc/HttpPqcIT.java => 
http-pqc-j21/src/test/java/org/acme/http/pqc/PqcWithFallbackIT.java (60%)
 create mode 100644 
http-pqc-j21/src/test/java/org/acme/http/pqc/PqcWithFallbackTest.java
 copy aws-lambda/src/main/java/org/acme/aws/lambda/Person.java => 
http-pqc-j21/src/test/java/org/acme/http/pqc/profiles/PqcOnlyProfile.java (62%)
 copy 
observability/src/main/java/org/acme/observability/health/camel/CustomReadinessCheck.java
 => 
http-pqc-j21/src/test/java/org/acme/http/pqc/profiles/PqcWithFallbackProfile.java
 (61%)
 copy {kamelet-chucknorris/src/main => 
http-pqc-j21/src/test}/resources/application.properties (70%)
 delete mode 100644 observability/src/main/docker/docker-compose-grafana.yml
 delete mode 100644 
observability/src/main/docker/grafana/provisioning/dashboards/dashboards.yml
 delete mode 100644 
observability/src/main/docker/grafana/provisioning/datasources/datasources.yml
 delete mode 100644 observability/src/main/docker/prometheus/prometheus.yml
 delete mode 100644 observability/src/main/docker/tempo/tempo.yml

Reply via email to