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 461f2d6862780f1b09c48e77950cafee8d6d51c1 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Jan 31 16:48:35 2020 +0100 CAMEL-14463 - Create an AWS-MQ component based on SDK v2, added component to kit --- apache-camel/pom.xml | 5 +++++ apache-camel/src/main/descriptors/common-bin.xml | 1 + bom/camel-bom/pom.xml | 5 +++++ components/pom.xml | 1 + parent/pom.xml | 5 +++++ 5 files changed, 17 insertions(+) diff --git a/apache-camel/pom.xml b/apache-camel/pom.xml index 5343f69..b2d7adf 100644 --- a/apache-camel/pom.xml +++ b/apache-camel/pom.xml @@ -306,6 +306,11 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> + <artifactId>camel-aws2-mq</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/apache-camel/src/main/descriptors/common-bin.xml b/apache-camel/src/main/descriptors/common-bin.xml index 0154579..a4ecb3e 100644 --- a/apache-camel/src/main/descriptors/common-bin.xml +++ b/apache-camel/src/main/descriptors/common-bin.xml @@ -82,6 +82,7 @@ <include>org.apache.camel:camel-aws-xray</include> <include>org.apache.camel:camel-aws2-ecs</include> <include>org.apache.camel:camel-aws2-eks</include> + <include>org.apache.camel:camel-aws2-mq</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 4e2536c..717c651 100644 --- a/bom/camel-bom/pom.xml +++ b/bom/camel-bom/pom.xml @@ -233,6 +233,11 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> + <artifactId>camel-aws2-mq</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 1c56067..ff51941 100644 --- a/components/pom.xml +++ b/components/pom.xml @@ -125,6 +125,7 @@ <module>camel-aws-translate</module> <module>camel-aws2-ecs</module> <module>camel-aws2-eks</module> + <module>camel-aws2-mq</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 7471b7a..180a009 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -1017,6 +1017,11 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> + <artifactId>camel-aws2-mq</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> <artifactId>camel-aws2-translate</artifactId> <version>${project.version}</version> </dependency>
