This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a change to branch 2.13.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
from 28c701b209 Increase test coverage of ref extension new 0648409327 Add tests for rest-openapi extension (apache#4117) new 622151ff27 Adjust the set of components to search in catalog tests new 9f7a232bbe Add CI step to test the catalog new 8b0a8f089a kubernetes: add documentation related to cluster service #4086 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: .github/workflows/ci-build.yaml | 6 ++ .../quarkus/QuarkusRuntimeProviderTest.java | 15 ++-- .../pages/reference/extensions/kubernetes.adoc | 31 +++++++ .../ROOT/pages/reference/extensions/master.adoc | 8 ++ .../pages/reference/extensions/rest-openapi.adoc | 30 +++++++ .../runtime/src/main/doc/configuration.adoc | 29 ++++++ .../master/runtime/src/main/doc/configuration.adoc | 3 + .../rest-openapi/runtime/src/main/doc/usage.adoc | 25 ++++++ integration-tests/rest-openapi/pom.xml | 38 +++++++- .../component/rest/openapi/it/RestOpenApiBean.java | 23 +++-- .../rest/openapi/it/RestOpenApiRoutes.java | 15 +++- .../rest/openapi/it/RestOpenapiResource.java | 40 ++++++++- .../src/main/resources/application.properties | 3 +- .../rest-openapi/src/main/resources/openapi.json | 100 +++++++++++++++++++++ .../component/rest/openapi/it/RestOpenapiTest.java | 50 ++++++++++- 15 files changed, 387 insertions(+), 29 deletions(-) create mode 100644 extensions/master/runtime/src/main/doc/configuration.adoc create mode 100644 extensions/rest-openapi/runtime/src/main/doc/usage.adoc copy integration-test-groups/foundation/bean/src/main/java/org/apache/camel/quarkus/component/bean/method/RegisteredBean.java => integration-tests/rest-openapi/src/main/java/org/apache/camel/quarkus/component/rest/openapi/it/RestOpenApiBean.java (69%) copy {integration-test-groups/aws2-quarkus-client/aws2-sqs => integration-tests/rest-openapi}/src/main/resources/application.properties (95%) create mode 100644 integration-tests/rest-openapi/src/main/resources/openapi.json