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 cd51a3ab6ac8f614a2cf065cecc16aeb3f7e94e9 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Jan 27 14:37:55 2020 +0100 CAMEL-14446 - Create an AWS-ECS 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 3d48ab8..b03941c 100644 --- a/apache-camel/pom.xml +++ b/apache-camel/pom.xml @@ -288,6 +288,11 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> + <artifactId>camel-aws2-ecs</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 d91b01b..443339a 100644 --- a/apache-camel/src/main/descriptors/common-bin.xml +++ b/apache-camel/src/main/descriptors/common-bin.xml @@ -78,6 +78,7 @@ <include>org.apache.camel:camel-aws-swf</include> <include>org.apache.camel:camel-aws-translate</include> <include>org.apache.camel:camel-aws-xray</include> + <include>org.apache.camel:camel-aws2-ecs</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 a8a5525..a96ec06 100644 --- a/bom/camel-bom/pom.xml +++ b/bom/camel-bom/pom.xml @@ -223,6 +223,11 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> + <artifactId>camel-aws2-ecs</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 f22066d..b0e27c8 100644 --- a/components/pom.xml +++ b/components/pom.xml @@ -123,6 +123,7 @@ <module>camel-aws-sqs</module> <module>camel-aws-swf</module> <module>camel-aws-translate</module> + <module>camel-aws2-ecs</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 9815d43..a6c13ec 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -1002,6 +1002,11 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> + <artifactId>camel-aws2-ecs</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> <artifactId>camel-aws2-translate</artifactId> <version>${project.version}</version> </dependency>
