This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch camel-23183-mcp-catalog-dep in repository https://gitbox.apache.org/repos/asf/camel.git
commit c42fe7d77799b3a521ac769e1ff1ddfba89b8e28 Author: Guillaume Nodet <[email protected]> AuthorDate: Fri Mar 13 08:29:15 2026 +0100 CAMEL-23183: Fix ClassNotFoundException for AbstractCamelCatalog in camel-jbang-mcp Co-Authored-By: Claude Opus 4.6 <[email protected]> --- dsl/camel-jbang/camel-jbang-mcp/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dsl/camel-jbang/camel-jbang-mcp/pom.xml b/dsl/camel-jbang/camel-jbang-mcp/pom.xml index f5f8f0d427f5..c69753160e9e 100644 --- a/dsl/camel-jbang/camel-jbang-mcp/pom.xml +++ b/dsl/camel-jbang/camel-jbang-mcp/pom.xml @@ -86,6 +86,12 @@ <artifactId>camel-jbang-core</artifactId> </dependency> + <!-- Camel Catalog (needed at runtime for DefaultCamelCatalog / AbstractCamelCatalog) --> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-catalog</artifactId> + </dependency> + <!-- Camel YAML DSL Validator for schema validation --> <dependency> <groupId>org.apache.camel</groupId>
