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 8fa5fc1 Temporarily disable debezium tests until #1311 and associtated issues are fixed discard 79ed7d8 Upgrade to Quarkus 1.6.0 - WIP add 8188694 Added an AWS2-IAM native extension add 462fd1a Camel-AWS2-IAM: Add specific option for region in tests add b20f1ae AWS2-IAM: Regen metadata add eb68674 Merge pull request #1364 from apache/aws2-iam new 09cbb73 Upgrade to Quarkus 1.6.0 - WIP new ad6a5ed Temporarily disable debezium tests until #1311 and associtated issues are fixed 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 (8fa5fc1) \ N -- N -- N refs/heads/quarkus-master (ad6a5ed) 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 2 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/aws2-iam.adoc | 2 +- .../pages/list-of-camel-quarkus-extensions.adoc | 2 +- extensions-jvm/aws2-iam/deployment/pom.xml | 73 ----------------- .../aws2/iam/deployment/Aws2IamProcessor.java | 47 ----------- extensions-jvm/aws2-iam/integration-test/pom.xml | 81 ------------------- .../component/aws2/iam/it/Aws2IamResource.java | 51 ------------ .../quarkus/component/aws2/iam/it/Aws2IamTest.java | 34 -------- extensions-jvm/aws2-iam/runtime/pom.xml | 91 ---------------------- extensions-jvm/pom.xml | 1 - .../{aws2-ecs => aws2-iam}/deployment/pom.xml | 8 +- .../aws2/iam/deployment/Aws2IamProcessor.java} | 10 +-- {extensions-jvm => extensions}/aws2-iam/pom.xml | 1 - extensions/{aws2-ecs => aws2-iam}/runtime/pom.xml | 8 +- .../main/resources/META-INF/quarkus-extension.yaml | 2 - extensions/pom.xml | 1 + integration-tests/aws2/pom.xml | 4 + .../camel/quarkus/component/aws2/CamelRoute.java | 4 + .../aws2/src/main/resources/application.properties | 38 ++++++++- poms/bom/pom.xml | 6 ++ 19 files changed, 65 insertions(+), 399 deletions(-) delete mode 100644 extensions-jvm/aws2-iam/deployment/pom.xml delete mode 100644 extensions-jvm/aws2-iam/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/iam/deployment/Aws2IamProcessor.java delete mode 100644 extensions-jvm/aws2-iam/integration-test/pom.xml delete mode 100644 extensions-jvm/aws2-iam/integration-test/src/main/java/org/apache/camel/quarkus/component/aws2/iam/it/Aws2IamResource.java delete mode 100644 extensions-jvm/aws2-iam/integration-test/src/test/java/org/apache/camel/quarkus/component/aws2/iam/it/Aws2IamTest.java delete mode 100644 extensions-jvm/aws2-iam/runtime/pom.xml copy extensions/{aws2-ecs => aws2-iam}/deployment/pom.xml (92%) copy extensions/{aws2-sns/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/sns/deployment/Aws2SnsProcessor.java => aws2-iam/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/iam/deployment/Aws2IamProcessor.java} (92%) rename {extensions-jvm => extensions}/aws2-iam/pom.xml (97%) copy extensions/{aws2-ecs => aws2-iam}/runtime/pom.xml (94%) rename {extensions-jvm => extensions}/aws2-iam/runtime/src/main/resources/META-INF/quarkus-extension.yaml (96%)