This is an automated email from the ASF dual-hosted git repository. zbendhiba pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push: new c285b20f70 Add missing logging dependency in elasticsearch extension Fixes #5221 c285b20f70 is described below commit c285b20f70d73cef929effbcf0c32870a4d8de6d Author: Zineb Bendhiba <bendhiba.zi...@gmail.com> AuthorDate: Thu Aug 24 20:46:51 2023 +0200 Add missing logging dependency in elasticsearch extension Fixes #5221 --- extensions-jvm/elasticsearch/deployment/pom.xml | 4 ++++ extensions-jvm/elasticsearch/runtime/pom.xml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/extensions-jvm/elasticsearch/deployment/pom.xml b/extensions-jvm/elasticsearch/deployment/pom.xml index 2727c3dd85..33f6e3d273 100644 --- a/extensions-jvm/elasticsearch/deployment/pom.xml +++ b/extensions-jvm/elasticsearch/deployment/pom.xml @@ -40,6 +40,10 @@ <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-elasticsearch</artifactId> </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-support-commons-logging-deployment</artifactId> + </dependency> </dependencies> <build> diff --git a/extensions-jvm/elasticsearch/runtime/pom.xml b/extensions-jvm/elasticsearch/runtime/pom.xml index 5d2405d4ad..1097506b9c 100644 --- a/extensions-jvm/elasticsearch/runtime/pom.xml +++ b/extensions-jvm/elasticsearch/runtime/pom.xml @@ -45,6 +45,10 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-elasticsearch</artifactId> </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-support-commons-logging</artifactId> + </dependency> </dependencies> <build>