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 667b9f1 Workaround https://github.com/quarkusio/quarkus/issues/9403 discard 0fb0bcb Upgrade to Quarkus 1.5.0 (WiP) discard 9f83c24 Temporary workaround for https://github.com/quarkusio/quarkus/issues/9103 discard ab7c55b Fix CamelContextCustomizerTest compilation errors discard 4ce1a70 Register required AHC classes for runtime initialization add de16492 Add REST OpenApi native support add 7a1067d Reformat BOM dependencies & test category items add 2a8b78b Remove duplicate kubernetes-client.version property new c623038 Register required AHC classes for runtime initialization new 7ffe4f1 Fix CamelContextCustomizerTest compilation errors new 52dad49 Temporary workaround for https://github.com/quarkusio/quarkus/issues/9103 new fc62f14 Upgrade to Quarkus 1.5.0 (WiP) new 5f4f7b2 Workaround https://github.com/quarkusio/quarkus/issues/9403 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 (667b9f1) \ N -- N -- N refs/heads/quarkus-master (5f4f7b2) 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 5 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: .github/test-categories.yaml | 5 +- .../pages/list-of-camel-quarkus-extensions.adoc | 4 +- extensions-jvm/pom.xml | 1 - .../openapi/deployment/RestOpenapiProcessor.java | 46 ------------ .../rest-openapi/integration-test/pom.xml | 81 ---------------------- extensions/pom.xml | 1 + .../rest-openapi/deployment/pom.xml | 4 ++ .../openapi/deployment/RestOpenapiProcessor.java} | 6 +- .../rest-openapi/pom.xml | 1 - .../rest-openapi/runtime/pom.xml | 4 ++ .../main/resources/META-INF/quarkus-extension.yaml | 2 - integration-tests/pom.xml | 1 + integration-tests/{jdbc => rest-openapi}/pom.xml | 28 ++++---- .../component/rest/openapi/it/FruitResource.java} | 39 ++++++----- .../rest/openapi/it/RestOpenApiRoutes.java} | 8 +-- .../rest/openapi/it/RestOpenapiResource.java | 36 +++++----- .../component/rest/openapi/it/model/Fruit.java | 14 ++-- .../component/rest/openapi/it/RestOpenapiIT.java} | 5 +- .../component/rest/openapi/it/RestOpenapiTest.java | 15 ++-- pom.xml | 1 - poms/bom/pom.xml | 16 ++--- 21 files changed, 102 insertions(+), 216 deletions(-) delete mode 100644 extensions-jvm/rest-openapi/deployment/src/main/java/org/apache/camel/quarkus/component/rest/openapi/deployment/RestOpenapiProcessor.java delete mode 100644 extensions-jvm/rest-openapi/integration-test/pom.xml rename {extensions-jvm => extensions}/rest-openapi/deployment/pom.xml (94%) copy extensions/{zip-deflater/deployment/src/main/java/org/apache/camel/quarkus/component/zip/deflater/deployment/ZipDeflaterProcessor.java => rest-openapi/deployment/src/main/java/org/apache/camel/quarkus/component/rest/openapi/deployment/RestOpenapiProcessor.java} (86%) rename {extensions-jvm => extensions}/rest-openapi/pom.xml (97%) rename {extensions-jvm => extensions}/rest-openapi/runtime/pom.xml (95%) rename {extensions-jvm => extensions}/rest-openapi/runtime/src/main/resources/META-INF/quarkus-extension.yaml (97%) copy integration-tests/{jdbc => rest-openapi}/pom.xml (88%) copy integration-tests/{http/src/main/java/org/apache/camel/quarkus/component/http/it/HttpService.java => rest-openapi/src/main/java/org/apache/camel/quarkus/component/rest/openapi/it/FruitResource.java} (56%) copy integration-tests/{bean-validator/src/main/java/org/apache/camel/quarkus/component/bean/validator/it/BeanValidatorRoute.java => rest-openapi/src/main/java/org/apache/camel/quarkus/component/rest/openapi/it/RestOpenApiRoutes.java} (80%) rename {extensions-jvm/rest-openapi/integration-test => integration-tests/rest-openapi}/src/main/java/org/apache/camel/quarkus/component/rest/openapi/it/RestOpenapiResource.java (55%) copy examples/timer-log/src/main/java/org/acme/timer/TimerRoute.java => integration-tests/rest-openapi/src/main/java/org/apache/camel/quarkus/component/rest/openapi/it/model/Fruit.java (75%) copy integration-tests/{amqp/src/test/java/org/apache/camel/quarkus/component/amqp/it/AmqpIT.java => rest-openapi/src/test/java/org/apache/camel/quarkus/component/rest/openapi/it/RestOpenapiIT.java} (89%) rename {extensions-jvm/rest-openapi/integration-test => integration-tests/rest-openapi}/src/test/java/org/apache/camel/quarkus/component/rest/openapi/it/RestOpenapiTest.java (67%)