This is an automated email from the ASF dual-hosted git repository.
jamesnetherton 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 50eb7f97b7 Remove redundant camel-quarkus-mongodb dependency from
camel-quarkus-debezium-mongodb
50eb7f97b7 is described below
commit 50eb7f97b7926158b570406cbe0a8178a2467680
Author: James Netherton <[email protected]>
AuthorDate: Thu Feb 5 13:48:45 2026 +0000
Remove redundant camel-quarkus-mongodb dependency from
camel-quarkus-debezium-mongodb
Fixes #8239
---
extensions/debezium-mongodb/deployment/pom.xml | 4 ----
extensions/debezium-mongodb/runtime/pom.xml | 8 ++++----
2 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/extensions/debezium-mongodb/deployment/pom.xml
b/extensions/debezium-mongodb/deployment/pom.xml
index 378dfec5ca..0d906be3cd 100644
--- a/extensions/debezium-mongodb/deployment/pom.xml
+++ b/extensions/debezium-mongodb/deployment/pom.xml
@@ -46,10 +46,6 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-mongodb-client-deployment</artifactId>
</dependency>
- <dependency>
- <groupId>org.apache.camel.quarkus</groupId>
- <artifactId>camel-quarkus-mongodb-deployment</artifactId>
- </dependency>
</dependencies>
<build>
diff --git a/extensions/debezium-mongodb/runtime/pom.xml
b/extensions/debezium-mongodb/runtime/pom.xml
index 216359e17f..adc7f7a518 100644
--- a/extensions/debezium-mongodb/runtime/pom.xml
+++ b/extensions/debezium-mongodb/runtime/pom.xml
@@ -43,14 +43,14 @@
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-support-debezium</artifactId>
</dependency>
- <dependency>
- <groupId>org.apache.camel.quarkus</groupId>
- <artifactId>camel-quarkus-mongodb</artifactId>
- </dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-debezium-mongodb</artifactId>
</dependency>
+ <dependency>
+ <groupId>io.quarkus</groupId>
+ <artifactId>quarkus-mongodb-client</artifactId>
+ </dependency>
</dependencies>
<build>