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 6febdab Upgrade to Quarkus 1.7.0 - WIP
add 54bed57 Fix #1468 Intermittent failure of CamelDevModeTest
add 50efe79 Fix #1448 Add an integration test for the command mode
add 738c4cc Fixup #1468 Intermittent failure of CamelDevModeTest
add 198f782 Fixup JPA extension
add 8c76e23 Fixup JSON Validator
new e3877e1 Upgrade to Quarkus 1.7.0 - WIP
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 (6febdab)
\
N -- N -- N refs/heads/quarkus-master (e3877e1)
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/modules/ROOT/pages/extensions/main.adoc | 18 ++++++
.../main/deployment/CamelMainProcessor.java | 26 +++++----
extensions-core/main/runtime/pom.xml | 2 +-
.../org/apache/camel/quarkus/main/CamelMain.java | 10 +++-
.../apache/camel/quarkus/main/CamelMainConfig.java | 23 ++++++++
.../camel/quarkus/main/CamelMainRecorder.java | 7 ++-
.../camel/quarkus/main/CamelMainRuntime.java | 13 ++++-
.../main/resources/META-INF/quarkus-extension.yaml | 2 +-
extensions/json-validator/runtime/pom.xml | 2 +-
.../{main-xml-jaxb => main-command-mode}/pom.xml | 66 ++++++++++++----------
.../apache/camel/quarkus/main/cmd/CamelRoute.java} | 18 +++---
.../src/main/resources/application.properties | 2 +-
.../camel/quarkus/main/cmd/it/CommandModeIT.java | 17 +++---
.../camel/quarkus/main/cmd/it/CommandModeTest.java | 52 +++++++++++++++++
integration-tests/pom.xml | 1 +
pom.xml | 1 +
poms/bom-test/pom.xml | 5 ++
tooling/scripts/test-categories.yaml | 1 +
18 files changed, 199 insertions(+), 67 deletions(-)
copy integration-tests/{main-xml-jaxb => main-command-mode}/pom.xml (68%)
copy
integration-tests/{bean/src/main/java/org/apache/camel/quarkus/component/bean/LazyAppScopedRouteBuilder.java
=>
main-command-mode/src/main/java/org/apache/camel/quarkus/main/cmd/CamelRoute.java}
(71%)
copy
integration-tests-support/testcontainers-support/src/main/resources/testcontainers.properties
=>
integration-tests/main-command-mode/src/main/resources/application.properties
(96%)
copy
extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/DisabledModelJAXBContextFactory.java
=>
integration-tests/main-command-mode/src/test/java/org/apache/camel/quarkus/main/cmd/it/CommandModeIT.java
(59%)
create mode 100644
integration-tests/main-command-mode/src/test/java/org/apache/camel/quarkus/main/cmd/it/CommandModeTest.java