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 7039be5a9c Replace camel-kamelets-catalog dependency with camel-kamelets in Kamelet extension docs 7039be5a9c is described below commit 7039be5a9c4fe47e62167253a1aeacaa836e9da8 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Thu Nov 28 13:04:26 2024 +0000 Replace camel-kamelets-catalog dependency with camel-kamelets in Kamelet extension docs --- docs/modules/ROOT/pages/reference/extensions/kamelet.adoc | 6 +++--- extensions/kamelet/runtime/src/main/doc/usage.adoc | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc b/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc index 9a5927e2b0..c5cd4d3b21 100644 --- a/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc @@ -54,16 +54,16 @@ This extension can preload a set of Kamelets at build time. You must include the [id="extensions-kamelet-usage-using-the-kamelet-catalog"] === Using the Kamelet Catalog -A set of pre-made Kamelets can be found on the /camel-kamelets/latest[Kamelet Catalog]. +A set of pre-made Kamelets can be found in the Kamelet Catalog. To use a Kamelet from the catalog, you need to copy its YAML definition (that you can find https://github.com/apache/camel-kamelets/[in the camel-kamelets repository]) to your project. -Alternatively, you can add a `camel-kamelets-catalog` dependency to your application. +Alternatively, you can add the `camel-kamelets` dependency to your application. [source,xml] ---- <dependency> <groupId>org.apache.camel.kamelets</groupId> - <artifactId>camel-kamelets-catalog</artifactId> + <artifactId>camel-kamelets</artifactId> </dependency> ---- diff --git a/extensions/kamelet/runtime/src/main/doc/usage.adoc b/extensions/kamelet/runtime/src/main/doc/usage.adoc index b5a3c00938..56cbd34859 100644 --- a/extensions/kamelet/runtime/src/main/doc/usage.adoc +++ b/extensions/kamelet/runtime/src/main/doc/usage.adoc @@ -4,16 +4,16 @@ This extension can preload a set of Kamelets at build time. You must include the === Using the Kamelet Catalog -A set of pre-made Kamelets can be found on the /camel-kamelets/latest[Kamelet Catalog]. +A set of pre-made Kamelets can be found in the Kamelet Catalog. To use a Kamelet from the catalog, you need to copy its YAML definition (that you can find https://github.com/apache/camel-kamelets/[in the camel-kamelets repository]) to your project. -Alternatively, you can add a `camel-kamelets-catalog` dependency to your application. +Alternatively, you can add the `camel-kamelets` dependency to your application. [source,xml] ---- <dependency> <groupId>org.apache.camel.kamelets</groupId> - <artifactId>camel-kamelets-catalog</artifactId> + <artifactId>camel-kamelets</artifactId> </dependency> ----