This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a change to branch quarkus-master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard f05829f Set quarkus.version to 999-SNAPSHOT add 1abe10c Dynamic endpoint cannot be resolved properly (toD) #1116 add 9e3bb40 Added native support for Kudu extension #1097 add 79467fa Fix Kudu native build on JDK 11 add cd05a73 Trigger project build on push new ea54e33 Set quarkus.version to 999-SNAPSHOT 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 (f05829f) \ N -- N -- N refs/heads/quarkus-master (ea54e33) 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: .github/workflows/{pr-build.yaml => ci-build.yaml} | 18 +++- .../pages/list-of-camel-quarkus-extensions.adoc | 4 +- docs/modules/ROOT/pages/promote-jvm-to-native.adoc | 2 +- .../quarkus/core/deployment/BuildProcessor.java | 3 +- .../component/kudu/deployment/KuduProcessor.java | 47 -------- extensions-jvm/kudu/integration-test/pom.xml | 80 -------------- .../quarkus/component/kudu/it/KuduResource.java | 51 --------- .../camel/quarkus/component/kudu/it/KuduTest.java | 34 ------ .../main/resources/META-INF/quarkus-extension.yaml | 30 ------ extensions-jvm/pom.xml | 1 - .../kudu/deployment/pom.xml | 0 .../component/kudu/deployment/KuduProcessor.java} | 7 +- {extensions-jvm => extensions}/kudu/pom.xml | 1 - .../kudu/runtime/pom.xml | 0 .../main/resources/META-INF/quarkus-extension.yaml | 7 +- extensions/pom.xml | 1 + integration-tests/{infinispan => kudu}/pom.xml | 46 +++++--- .../kudu/it/KuduInfrastructureTestHelper.java | 85 +++++++++++++++ .../quarkus/component/kudu/it/KuduResource.java | 95 +++++++++++++++++ .../quarkus/component/kudu/it/KuduRoute.java} | 20 ++-- .../kudu/src/main/resources/reflection-config.json | 10 ++ .../camel/quarkus/component/kudu/it/KuduIT.java} | 6 +- .../camel/quarkus/component/kudu/it/KuduTest.java | 95 +++++++++++++++++ .../component/kudu/it/KuduTestResource.java | 118 +++++++++++++++++++++ integration-tests/pom.xml | 2 + .../{http => send-dynamic-http}/pom.xml | 22 ++-- .../component/http/it/SendDynamicResource.java | 79 ++++++++++++++ .../src/main/resources/application.properties | 0 .../quarkus/component/http/it/SendDynamicIT.java} | 2 +- .../component/http/it/SendDynamicTest.java} | 22 ++-- tooling/scripts/validate-github-workflows.groovy | 2 +- 31 files changed, 577 insertions(+), 313 deletions(-) rename .github/workflows/{pr-build.yaml => ci-build.yaml} (95%) delete mode 100644 extensions-jvm/kudu/deployment/src/main/java/org/apache/camel/quarkus/component/kudu/deployment/KuduProcessor.java delete mode 100644 extensions-jvm/kudu/integration-test/pom.xml delete mode 100644 extensions-jvm/kudu/integration-test/src/main/java/org/apache/camel/quarkus/component/kudu/it/KuduResource.java delete mode 100644 extensions-jvm/kudu/integration-test/src/test/java/org/apache/camel/quarkus/component/kudu/it/KuduTest.java delete mode 100644 extensions-jvm/kudu/runtime/src/main/resources/META-INF/quarkus-extension.yaml rename {extensions-jvm => extensions}/kudu/deployment/pom.xml (100%) copy extensions/{slack/deployment/src/main/java/org/apache/camel/quarkus/component/slack/deployment/SlackProcessor.java => kudu/deployment/src/main/java/org/apache/camel/quarkus/component/kudu/deployment/KuduProcessor.java} (89%) rename {extensions-jvm => extensions}/kudu/pom.xml (97%) rename {extensions-jvm => extensions}/kudu/runtime/pom.xml (100%) copy extensions/{influxdb => kudu}/runtime/src/main/resources/META-INF/quarkus-extension.yaml (84%) copy integration-tests/{infinispan => kudu}/pom.xml (83%) create mode 100644 integration-tests/kudu/src/main/java/org/apache/camel/quarkus/component/kudu/it/KuduInfrastructureTestHelper.java create mode 100644 integration-tests/kudu/src/main/java/org/apache/camel/quarkus/component/kudu/it/KuduResource.java copy integration-tests/{bean/src/main/java/org/apache/camel/quarkus/component/bean/LazyAppScopedRouteBuilder.java => kudu/src/main/java/org/apache/camel/quarkus/component/kudu/it/KuduRoute.java} (60%) create mode 100644 integration-tests/kudu/src/main/resources/reflection-config.json copy integration-tests/{activemq/src/test/java/org/apache/camel/quarkus/component/activemq/it/ActiveMQIT.java => kudu/src/test/java/org/apache/camel/quarkus/component/kudu/it/KuduIT.java} (78%) create mode 100644 integration-tests/kudu/src/test/java/org/apache/camel/quarkus/component/kudu/it/KuduTest.java create mode 100644 integration-tests/kudu/src/test/java/org/apache/camel/quarkus/component/kudu/it/KuduTestResource.java copy integration-tests/{http => send-dynamic-http}/pom.xml (89%) create mode 100644 integration-tests/send-dynamic-http/src/main/java/org/apache/camel/quarkus/component/http/it/SendDynamicResource.java copy integration-tests/{infinispan => send-dynamic-http}/src/main/resources/application.properties (100%) copy integration-tests/{http/src/test/java/org/apache/camel/quarkus/component/http/it/HttpIT.java => send-dynamic-http/src/test/java/org/apache/camel/quarkus/component/http/it/SendDynamicIT.java} (95%) copy integration-tests/{graphql/src/test/java/org/apache/camel/quarkus/component/graphql/it/GraphQLTest.java => send-dynamic-http/src/test/java/org/apache/camel/quarkus/component/http/it/SendDynamicTest.java} (67%)