This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
from 9e94ba4 Fix debezium itest pom dependencies to deployments new 1467092 Remove superfluous quarkus-maven-plugin:build invocation that we have defined in camel-quarkus-build-parent-it anyway new d8e024f Leverage Quarkus plugin's generate-code mojo instead of protobuf-maven-plugin to generate protobuf stubs new 181d86b Protobuf dataformat native support #789 The 3 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: .../ROOT/pages/reference/extensions/grpc.adoc | 27 ++++++ .../ROOT/pages/reference/extensions/protobuf.adoc | 37 +++++++- .../partials/reference/dataformats/protobuf.adoc | 6 +- extensions-jvm/pom.xml | 1 - extensions-jvm/protobuf/integration-test/pom.xml | 105 --------------------- .../component/grpc/deployment/GrpcProcessor.java | 7 ++ .../grpc/runtime/src/main/doc/configuration.adoc | 27 ++++++ .../runtime/QuarkusBindableServiceFactory.java | 1 - extensions/pom.xml | 1 + .../protobuf/deployment/pom.xml | 6 ++ .../protobuf/deployment/ProtobufProcessor.java | 35 ++++--- {extensions-jvm => extensions}/protobuf/pom.xml | 1 - .../protobuf/runtime/pom.xml | 2 +- .../runtime/src/main/doc/configuration.adoc | 25 +++++ .../main/resources/META-INF/quarkus-extension.yaml | 0 integration-tests/grpc/pom.xml | 63 +------------ integration-tests/nagios/pom.xml | 16 ---- integration-tests/pom.xml | 1 + integration-tests/{mustache => protobuf}/pom.xml | 45 +++++---- .../component/protobuf/it/ProtobufResource.java | 0 .../component/protobuf/it/ProtobufRoute.java | 0 .../protobuf}/src/main/proto/addressbook.proto | 0 .../quarkus/component/protobuf/it/ProtobufIT.java} | 4 +- .../component/protobuf/it/ProtobufTest.java | 0 integration-tests/saga/pom.xml | 16 ---- pom.xml | 2 - poms/build-parent-it/pom.xml | 2 + poms/build-parent/pom.xml | 10 -- tooling/scripts/test-categories.yaml | 1 + 29 files changed, 188 insertions(+), 253 deletions(-) delete mode 100644 extensions-jvm/protobuf/integration-test/pom.xml rename {extensions-jvm => extensions}/protobuf/deployment/pom.xml (94%) rename {extensions-jvm => extensions}/protobuf/deployment/src/main/java/org/apache/camel/quarkus/component/protobuf/deployment/ProtobufProcessor.java (53%) rename {extensions-jvm => extensions}/protobuf/pom.xml (97%) rename {extensions-jvm => extensions}/protobuf/runtime/pom.xml (98%) create mode 100644 extensions/protobuf/runtime/src/main/doc/configuration.adoc rename {extensions-jvm => extensions}/protobuf/runtime/src/main/resources/META-INF/quarkus-extension.yaml (100%) copy integration-tests/{mustache => protobuf}/pom.xml (77%) rename {extensions-jvm/protobuf/integration-test => integration-tests/protobuf}/src/main/java/org/apache/camel/quarkus/component/protobuf/it/ProtobufResource.java (100%) rename {extensions-jvm/protobuf/integration-test => integration-tests/protobuf}/src/main/java/org/apache/camel/quarkus/component/protobuf/it/ProtobufRoute.java (100%) rename {extensions-jvm/protobuf/integration-test => integration-tests/protobuf}/src/main/proto/addressbook.proto (100%) copy integration-tests/{amqp/src/test/java/org/apache/camel/quarkus/component/amqp/it/AmqpIT.java => protobuf/src/test/java/org/apache/camel/quarkus/component/protobuf/it/ProtobufIT.java} (90%) rename {extensions-jvm/protobuf/integration-test => integration-tests/protobuf}/src/test/java/org/apache/camel/quarkus/component/protobuf/it/ProtobufTest.java (100%)