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 54d2300 Disable azure itest native builds until issues are fixed: discard 4d7a872 Upgrade to Quarkus 1.12.0.Final add af400d3 Upgrade to cq-maven-plugin 0.28.0 - new-test mojo added add 073835c Test AWS 2 SNS properly add 88ffc0c Updated CHANGELOG.md new 2d77cce Upgrade to Quarkus 1.12.0.Final new 0987a81 Disable azure itest native builds until 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 (54d2300) \ N -- N -- N refs/heads/quarkus-master (0987a81) 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: CHANGELOG.md | 7 +- .../test/support/aws2/Aws2TestResource.java | 1 + .../{aws2-sqs => aws2-sqs-sns}/README.adoc | 0 .../{aws2-sqs => aws2-sqs-sns}/pom.xml | 25 +++- .../component/aws2/sqs/it/Aws2SqsResource.java | 46 +++++- .../src/main/resources/application.properties | 4 + .../quarkus/component/aws2/sqs/it/Aws2SqsIT.java | 0 .../quarkus/component/aws2/sqs/it/Aws2SqsTest.java | 33 ++++- .../component/aws2/sqs/it/Aws2SqsTestResource.java | 161 +++++++++++++++++++++ .../component/aws2/sqs/it/Aws2SqsTestResource.java | 71 --------- integration-tests/aws2/pom.xml | 30 ---- .../camel/quarkus/component/aws2/CamelRoute.java | 5 - integration-tests/master/pom.xml | 2 +- integration-tests/pom.xml | 2 +- pom.xml | 2 +- tooling/scripts/test-categories.yaml | 2 +- 16 files changed, 263 insertions(+), 128 deletions(-) rename integration-tests/{aws2-sqs => aws2-sqs-sns}/README.adoc (100%) rename integration-tests/{aws2-sqs => aws2-sqs-sns}/pom.xml (83%) rename integration-tests/{aws2-sqs => aws2-sqs-sns}/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsResource.java (64%) rename integration-tests/{aws2-sqs => aws2-sqs-sns}/src/main/resources/application.properties (87%) rename integration-tests/{aws2-sqs => aws2-sqs-sns}/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsIT.java (100%) rename integration-tests/{aws2-sqs => aws2-sqs-sns}/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTest.java (71%) create mode 100644 integration-tests/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTestResource.java delete mode 100644 integration-tests/aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTestResource.java