This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 7712dccb844f23aac55b015ef8a3b627ff5a3c29 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Feb 17 12:10:58 2020 +0100 CAMEL-14553 - Create an AWS-SQS component based on SDK v2, added component to kit --- apache-camel/src/main/descriptors/common-bin.xml | 1 + bom/camel-bom/pom.xml | 5 +++++ components/pom.xml | 1 + parent/pom.xml | 5 +++++ 4 files changed, 12 insertions(+) diff --git a/apache-camel/src/main/descriptors/common-bin.xml b/apache-camel/src/main/descriptors/common-bin.xml index 10673fa..8ecf544 100644 --- a/apache-camel/src/main/descriptors/common-bin.xml +++ b/apache-camel/src/main/descriptors/common-bin.xml @@ -96,6 +96,7 @@ <include>org.apache.camel:camel-aws2-msk</include> <include>org.apache.camel:camel-aws2-ses</include> <include>org.apache.camel:camel-aws2-sns</include> + <include>org.apache.camel:camel-aws2-sqs</include> <include>org.apache.camel:camel-aws2-translate</include> <include>org.apache.camel:camel-azure</include> <include>org.apache.camel:camel-barcode</include> diff --git a/bom/camel-bom/pom.xml b/bom/camel-bom/pom.xml index c290e94..69fb17b 100644 --- a/bom/camel-bom/pom.xml +++ b/bom/camel-bom/pom.xml @@ -273,6 +273,11 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> + <artifactId>camel-aws2-sqs</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> <artifactId>camel-aws2-translate</artifactId> <version>${project.version}</version> </dependency> diff --git a/components/pom.xml b/components/pom.xml index a0edbc2..32c82a3 100644 --- a/components/pom.xml +++ b/components/pom.xml @@ -134,6 +134,7 @@ <module>camel-aws2-mq</module> <module>camel-aws2-ses</module> <module>camel-aws2-sns</module> + <module>camel-aws2-sqs</module> <module>camel-aws2-translate</module> <module>camel-aws-xray</module> <module>camel-azure</module> diff --git a/parent/pom.xml b/parent/pom.xml index cda7e1f..c46b20b 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -1086,6 +1086,11 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> + <artifactId>camel-aws2-sqs</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> <artifactId>camel-aws2-translate</artifactId> <version>${project.version}</version> </dependency>