This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch quarkus-master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard 0437bb4 Azure extension native build fails with Quarkus 1.13 #2299 discard ea73bf4 Fix #1918 to add a integration test with camel-jdbc and camel-jms discard fb88e81 Remove support for Webocket JSR 356 discard 6c52904 Upgrade to Quarkus 1.13.0.Final add 0360079 Updated CHANGELOG.md add 10d2f41 HL7 Native support new c21acbd Upgrade to Quarkus 1.13.0.Final new a07295c Remove support for Webocket JSR 356 new 61fa93f Fix #1918 to add a integration test with camel-jdbc and camel-jms new 3d3733e Azure extension native build fails with Quarkus 1.13 #2299 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 (0437bb4) \ N -- N -- N refs/heads/quarkus-master (3d3733e) 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 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: CHANGELOG.md | 6 +- .../ROOT/pages/reference/extensions/hl7.adoc | 15 +- .../ROOT/partials/reference/dataformats/hl7.adoc | 6 +- .../partials/reference/languages/hl7terser.adoc | 6 +- .../component/hl7/deployment/Hl7Processor.java | 46 ------ extensions-jvm/hl7/integration-test/pom.xml | 83 ----------- .../quarkus/component/hl7/it/Hl7Resource.java | 64 --------- .../camel/quarkus/component/hl7/it/Hl7Test.java | 42 ------ extensions-jvm/pom.xml | 1 - .../hl7/deployment/pom.xml | 0 .../component/hl7/deployment/Hl7Processor.java | 101 +++++++++++++ {extensions-jvm => extensions}/hl7/pom.xml | 1 - {extensions-jvm => extensions}/hl7/runtime/pom.xml | 1 + .../hl7/runtime/src/main/doc/limitations.adoc | 3 + .../main/resources/META-INF/quarkus-extension.yaml | 3 +- extensions/pom.xml | 1 + integration-tests/{lra => hl7}/pom.xml | 33 +++-- .../quarkus/component/hl7/it/Hl7Producers.java | 89 ++++++++++++ .../quarkus/component/hl7/it/Hl7Resource.java | 156 ++++++++++++++++++++ .../camel/quarkus/component/hl7/it/Hl7Routes.java | 60 ++++++++ .../camel/quarkus/component/hl7/it/Hl7IT.java} | 4 +- .../camel/quarkus/component/hl7/it/Hl7Test.java | 157 +++++++++++++++++++++ .../quarkus/component/hl7/it/Hl7TestResource.java} | 10 +- .../hl7/src/test/resources/hl7-2.2-pid.txt | 2 + integration-tests/pom.xml | 1 + pom.xml | 3 +- poms/bom/pom.xml | 42 +++++- tooling/scripts/test-categories.yaml | 1 + 28 files changed, 663 insertions(+), 274 deletions(-) delete mode 100644 extensions-jvm/hl7/deployment/src/main/java/org/apache/camel/quarkus/component/hl7/deployment/Hl7Processor.java delete mode 100644 extensions-jvm/hl7/integration-test/pom.xml delete mode 100644 extensions-jvm/hl7/integration-test/src/main/java/org/apache/camel/quarkus/component/hl7/it/Hl7Resource.java delete mode 100644 extensions-jvm/hl7/integration-test/src/test/java/org/apache/camel/quarkus/component/hl7/it/Hl7Test.java rename {extensions-jvm => extensions}/hl7/deployment/pom.xml (100%) create mode 100644 extensions/hl7/deployment/src/main/java/org/apache/camel/quarkus/component/hl7/deployment/Hl7Processor.java rename {extensions-jvm => extensions}/hl7/pom.xml (97%) rename {extensions-jvm => extensions}/hl7/runtime/pom.xml (98%) create mode 100644 extensions/hl7/runtime/src/main/doc/limitations.adoc rename {extensions-jvm => extensions}/hl7/runtime/src/main/resources/META-INF/quarkus-extension.yaml (97%) copy integration-tests/{lra => hl7}/pom.xml (88%) create mode 100644 integration-tests/hl7/src/main/java/org/apache/camel/quarkus/component/hl7/it/Hl7Producers.java create mode 100644 integration-tests/hl7/src/main/java/org/apache/camel/quarkus/component/hl7/it/Hl7Resource.java create mode 100644 integration-tests/hl7/src/main/java/org/apache/camel/quarkus/component/hl7/it/Hl7Routes.java copy integration-tests/{as2/src/test/java/org/apache/camel/quarkus/component/as2/it/As2IT.java => hl7/src/test/java/org/apache/camel/quarkus/component/hl7/it/Hl7IT.java} (91%) create mode 100644 integration-tests/hl7/src/test/java/org/apache/camel/quarkus/component/hl7/it/Hl7Test.java copy integration-tests/{as2/src/test/java/org/apache/camel/quarkus/component/as2/it/As2TestResource.java => hl7/src/test/java/org/apache/camel/quarkus/component/hl7/it/Hl7TestResource.java} (79%) create mode 100644 integration-tests/hl7/src/test/resources/hl7-2.2-pid.txt