This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch 3.15.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/3.15.x by this push:
new 772ad5dcd6 Replace camel-kamelets-catalog dependency with
camel-kamelets in Kamelet extension docs
772ad5dcd6 is described below
commit 772ad5dcd630b7800e0aea62b932c7d425534736
Author: James Netherton <[email protected]>
AuthorDate: Thu Nov 28 13:04:26 2024 +0000
Replace camel-kamelets-catalog dependency with camel-kamelets in Kamelet
extension docs
---
.../ROOT/pages/reference/extensions/kamelet.adoc | 22 +++++++++++++++++++---
extensions/kamelet/runtime/src/main/doc/usage.adoc | 22 +++++++++++++++++++---
2 files changed, 38 insertions(+), 6 deletions(-)
diff --git a/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc
b/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc
index dc7d3358d4..9ae56d8144 100644
--- a/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc
@@ -54,16 +54,32 @@ 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>
+----
+
+If the Kamelet requires the `camel-kamelets-utils` dependency, then this
should also be added to your application.
+
+[source,xml]
+----
+<dependency>
+ <groupId>org.apache.camel.kamelets</groupId>
+ <artifactId>camel-kamelets-utils</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
----
diff --git a/extensions/kamelet/runtime/src/main/doc/usage.adoc
b/extensions/kamelet/runtime/src/main/doc/usage.adoc
index b5a3c00938..e5c1b65daa 100644
--- a/extensions/kamelet/runtime/src/main/doc/usage.adoc
+++ b/extensions/kamelet/runtime/src/main/doc/usage.adoc
@@ -4,16 +4,32 @@ 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>
+----
+
+If the Kamelet requires the `camel-kamelets-utils` dependency, then this
should also be added to your application.
+
+[source,xml]
+----
+<dependency>
+ <groupId>org.apache.camel.kamelets</groupId>
+ <artifactId>camel-kamelets-utils</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
----