This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 9884b1ee34c353869d7845fd12b74cfab9aeebfd Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Feb 1 13:45:18 2023 +0100 CAMEL-18131 - camel-health - Add health checks for components that has extension for connectivity verification - AWS MQ Signed-off-by: Andrea Cosentino <[email protected]> --- components/camel-aws/camel-aws2-mq/pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/camel-aws/camel-aws2-mq/pom.xml b/components/camel-aws/camel-aws2-mq/pom.xml index e7875b5ec4c..d96963830b6 100644 --- a/components/camel-aws/camel-aws2-mq/pom.xml +++ b/components/camel-aws/camel-aws2-mq/pom.xml @@ -50,6 +50,10 @@ <artifactId>apache-client</artifactId> <version>${aws-java-sdk2-version}</version> </dependency> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-health</artifactId> + </dependency> <!-- for testing --> <dependency> @@ -62,10 +66,6 @@ <artifactId>camel-core-catalog</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-health</artifactId> - </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-infra-aws-v2</artifactId>
