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 86224bb Updated CHANGELOG.md new 67e2636 Autogenerate the dependencies in the aws2-grouped test new 22124f1 Test AWS 2 DynamoDB properly new 81b7c64 Upgrade to cq-maven-plugin 0.30.0; now removes duplicate virtual deps comments 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: extensions-jvm/redis/integration-test/pom.xml | 2 - extensions-jvm/spark/integration-test/pom.xml | 2 - .../aws2-ddb}/pom.xml | 31 ++--- .../component/aws2/ddb/it/Aws2DdbResource.java | 151 +++++++++++++++++++++ .../src/main/resources/application.properties | 9 +- .../quarkus/component/aws2/ddb/it/Aws2DdbIT.java} | 4 +- .../quarkus/component/aws2/ddb/it/Aws2DdbTest.java | 109 +++++++++++++++ .../aws2/ddb/it/Aws2DdbTestEnvCustomizer.java | 80 +++++++++++ ...quarkus.test.support.aws2.Aws2TestEnvCustomizer | 1 + integration-tests-aws2/aws2-sqs-sns/pom.xml | 6 +- integration-tests-aws2/pom.xml | 1 + .../test/support/aws2/Aws2TestEnvContext.java | 16 ++- integration-tests/aws2-grouped/README.adoc | 7 +- integration-tests/aws2-grouped/pom.xml | 61 ++++----- integration-tests/cassandraql/pom.xml | 15 -- integration-tests/debezium/pom.xml | 2 - integration-tests/hazelcast/pom.xml | 2 - integration-tests/jsonata/pom.xml | 2 - integration-tests/leveldb/pom.xml | 2 - integration-tests/msv/pom.xml | 2 - integration-tests/nsq/pom.xml | 2 - integration-tests/pgevent/pom.xml | 2 - integration-tests/rest/pom.xml | 2 - integration-tests/saga/pom.xml | 2 - integration-tests/shiro/pom.xml | 2 - integration-tests/univocity-parsers/pom.xml | 2 - integration-tests/weather/pom.xml | 4 - pom.xml | 13 +- tooling/scripts/group-tests.groovy | 16 +++ 29 files changed, 435 insertions(+), 115 deletions(-) copy {integration-tests/spring-rabbitmq => integration-tests-aws2/aws2-ddb}/pom.xml (86%) create mode 100644 integration-tests-aws2/aws2-ddb/src/main/java/org/apache/camel/quarkus/component/aws2/ddb/it/Aws2DdbResource.java copy {integration-tests/bean => integration-tests-aws2/aws2-ddb}/src/main/resources/application.properties (85%) copy integration-tests-aws2/{aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsSnsIT.java => aws2-ddb/src/test/java/org/apache/camel/quarkus/component/aws2/ddb/it/Aws2DdbIT.java} (91%) create mode 100644 integration-tests-aws2/aws2-ddb/src/test/java/org/apache/camel/quarkus/component/aws2/ddb/it/Aws2DdbTest.java create mode 100644 integration-tests-aws2/aws2-ddb/src/test/java/org/apache/camel/quarkus/component/aws2/ddb/it/Aws2DdbTestEnvCustomizer.java create mode 100644 integration-tests-aws2/aws2-ddb/src/test/resources/META-INF/services/org.apache.camel.quarkus.test.support.aws2.Aws2TestEnvCustomizer