This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 820f7a6febe chore(docs): Fix Camel JBang --dep option typos (#16603)
820f7a6febe is described below
commit 820f7a6febe04773d0524848c7a1558227a4dddb
Author: Viliam Kasala <[email protected]>
AuthorDate: Wed Dec 18 13:49:21 2024 +0100
chore(docs): Fix Camel JBang --dep option typos (#16603)
---
docs/user-manual/modules/ROOT/pages/camel-jbang.adoc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
index 2337bb64633..4825bed8745 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
@@ -3742,21 +3742,21 @@ camel export --build-tool=gradle --runtime=spring-boot
--gav=com.foo:acme:1.0-SN
=== Exporting with JMX management included
Usually when exporting to Spring Boot, Quarkus or Camel Main, then JMX
management is not included out of the box.
-To include JMX, you need to add `camel:management` in the `--deps` option, as
shown below:
+To include JMX, you need to add `camel:management` in the `--dep` option, as
shown below:
[source,bash]
----
-camel export --runtime=quarkus --gav=com.foo:acme:1.0-SNAPSHOT
--deps=camel:management --directory=../myproject
+camel export --runtime=quarkus --gav=com.foo:acme:1.0-SNAPSHOT
--dep=camel:management --directory=../myproject
----
=== Exporting with Camel CLI included
Usually when exporting to Spring Boot, Quarkus or Camel Main, then Camel JBang
CLI is not included out of the box.
-To be able to continue to use Camel CLI (i.e. `camel`), you need to add
`camel:cli-connector` in the `--deps` option, as shown below:
+To be able to continue to use Camel CLI (i.e. `camel`), you need to add
`camel:cli-connector` in the `--dep` option, as shown below:
[source,bash]
----
-camel export --runtime=quarkus --gav=com.foo:acme:1.0-SNAPSHOT
--deps=camel:cli-connector --directory=../myproject
+camel export --runtime=quarkus --gav=com.foo:acme:1.0-SNAPSHOT
--dep=camel:cli-connector --directory=../myproject
----
=== Configuring exporting