This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a change to branch quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard 6fdffac502 Disable microprofile-fault-tolerance testing due to #5995
discard 03cf306165 Upgrade Quarkus to 3.10.0.CR1
add 5b74e44183 Jt400: tests are not cleaning after themselves and parallel
run fails
add c147881c8e Ban com.google.guava:listenablefuture because it does not
contain any code anyway
add 67759776a6 Manage org.apache.httpcomponents.core5:httpcore5-h2 to
avoid convergence issues with CXF
add 8db8c50942 Remove redundant usage of xml-jaxb extension
add 5250bf76bd Prevent xml-jaxb extension producing
CamelModelToXMLDumperBuildItem if xml-io-dsl is present
add e911310ae8 Use `xml-io-dsl` instead of `xml-jaxb` when using the
`management` extension.
add bf5f5ce52c Upgrade cq-maven-plugin to 4.8.0
add c061e5ff6e Document how to generate a new example project
add 8a98ae5a88 Upgrade Quarkus to 3.10.0.CR1
add 17a559652d Disable microprofile-fault-tolerance testing due to #5995
add d9b26df788 Upgrade to Quarkus CXF 3.10.0.CR1, fix #5926
add 096b96d42d Cxf-soap: tests are not working in FIPS environment
new 8ff016b659 Upgrade Quarkus to 3.11.0.CR1
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 (6fdffac502)
\
N -- N -- N refs/heads/quarkus-main (8ff016b659)
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:
docs/antora.yml | 2 +-
docs/modules/ROOT/nav.adoc | 1 +
.../contributor-guide/create-new-example.adoc | 36 ++
.../dsl/xml/io/deployment/XmlIoDslProcessor.java | 10 +
.../camel/quarkus/dsl/xml/XmlIoDslRecorder.java} | 13 +-
.../xml/jaxb/deployment/XmlJaxbProcessor.java | 20 +-
extensions/management/deployment/pom.xml | 2 +-
extensions/management/runtime/pom.xml | 2 +-
.../src/main/resources/encrypt-sign-policy.xml | 2 +-
.../src/main/resources/AsymmetricSAML2Policy.xml | 2 +-
.../src/main/resources/TrustHelloService.wsdl | 2 +-
.../src/main/resources/ws-trust-1.4-service.wsdl | 2 +-
.../dataformats-json/json-gson/pom.xml | 34 --
.../dataformats-json/json-jackson/pom.xml | 17 -
.../dataformats-json/json-jsonb/pom.xml | 34 --
integration-test-groups/pom.xml | 3 +-
integration-tests/cxf-soap-grouped/pom.xml | 6 -
integration-tests/dataformats-json-grouped/pom.xml | 17 -
integration-tests/jt400/README.adoc | 24 +-
integration-tests/jt400/pom.xml | 5 +
.../component/jt400/it/InquiryMessageHolder.java} | 27 +-
.../quarkus/component/jt400/it/Jt400Resource.java | 97 ++--
.../quarkus/component/jt400/it/Jt400Routes.java | 22 +-
.../src/main/resources/application.properties | 2 +-
.../quarkus/component/jt400/it/Jt400Test.java | 245 +++++----
.../component/jt400/it/Jt400TestResource.java | 352 +++++++++++++
integration-tests/main-xml-io/pom.xml | 6 +-
.../src/main/resources/application.properties | 4 +
.../camel/quarkus/main/CoreMainXmlIoTest.java | 22 +-
integration-tests/main-xml-jaxb/pom.xml | 8 +-
.../quarkus/main/CoreMainXmlJaxbResource.java | 5 -
.../src/main/resources/application.properties | 2 +-
.../src/main/resources/rests/my-rests.xml | 26 -
.../src/main/resources/rests/my-rests.yaml} | 12 +-
.../src/main/resources/routes/my-routes.xml | 41 --
.../src/main/resources/routes/my-routes.yaml} | 23 +-
.../src/main/resources/templates/my-templates.xml | 29 -
.../main/resources/templates/my-templates.yaml} | 12 +-
.../camel/quarkus/main/CoreMainXmlJaxbTest.java | 11 +-
pom.xml | 6 +-
poms/bom/pom.xml | 29 +
poms/bom/src/main/generated/flattened-full-pom.xml | 583 +++++++++++----------
.../src/main/generated/flattened-reduced-pom.xml | 111 ++--
.../generated/flattened-reduced-verbose-pom.xml | 583 +++++++++++----------
.../camel-quarkus-banned-dependencies.xml | 1 +
45 files changed, 1486 insertions(+), 1007 deletions(-)
create mode 100644
docs/modules/ROOT/pages/contributor-guide/create-new-example.adoc
copy
extensions-core/{yaml-io/runtime/src/main/java/org/apache/camel/quarkus/yaml/io/YamlIORecorder.java
=>
xml-io-dsl/runtime/src/main/java/org/apache/camel/quarkus/dsl/xml/XmlIoDslRecorder.java}
(75%)
copy
integration-tests/{smallrye-reactive-messaging/src/main/java/org/apache/camel/quarkus/component/smallrye/reactive/messaging/it/ResultsBean.java
=>
jt400/src/main/java/org/apache/camel/quarkus/component/jt400/it/InquiryMessageHolder.java}
(64%)
create mode 100644
integration-tests/jt400/src/test/java/org/apache/camel/quarkus/component/jt400/it/Jt400TestResource.java
delete mode 100644
integration-tests/main-xml-jaxb/src/main/resources/rests/my-rests.xml
copy integration-tests/{csimple/src/main/resources/routes/my-routes.yaml =>
main-xml-jaxb/src/main/resources/rests/my-rests.yaml} (87%)
delete mode 100644
integration-tests/main-xml-jaxb/src/main/resources/routes/my-routes.xml
copy
integration-tests/{camel-k-runtime/src/main/resources/routes/routes-with-beans.yaml
=> main-xml-jaxb/src/main/resources/routes/my-routes.yaml} (75%)
delete mode 100644
integration-tests/main-xml-jaxb/src/main/resources/templates/my-templates.xml
copy integration-tests/{jasypt/src/main/resources/routes/jasypt-routes.yaml =>
main-xml-jaxb/src/main/resources/templates/my-templates.yaml} (80%)