You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2022/11/29 03:27:08 UTC

[camel] branch WillemJiang-patch-1 created (now d515d4b22e5)

This is an automated email from the ASF dual-hosted git repository.

ningjiang pushed a change to branch WillemJiang-patch-1
in repository https://gitbox.apache.org/repos/asf/camel.git


      at d515d4b22e5 Fix the camel project export dir option typo

This branch includes the following new commits:

     new d515d4b22e5 Fix the camel project export dir option typo

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel] 01/01: Fix the camel project export dir option typo

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ningjiang pushed a commit to branch WillemJiang-patch-1
in repository https://gitbox.apache.org/repos/asf/camel.git

commit d515d4b22e5108726e751506544cb5e37500a8d9
Author: Willem Jiang <wi...@gmail.com>
AuthorDate: Tue Nov 29 11:27:02 2022 +0800

    Fix the camel project export dir option typo
---
 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 16dace4c5e7..643179f4519 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
@@ -1512,7 +1512,7 @@ To export to another directly (copies the files) you execute:
 
 [source,bash]
 ----
-camel export --runtime=camel-main --gav=com.foo:acme:1.0-SNAPSHOT --dir=../myproject
+camel export --runtime=camel-main --gav=com.foo:acme:1.0-SNAPSHOT -dir=../myproject
 ----
 
 TIP: See the possible options by running: `camel export --help` for more details.
@@ -1524,7 +1524,7 @@ specify the `--build-tool=gradle` when exporting, such as:
 
 [source,bash]
 ----
-camel export --build-tool=gradle --runtime=spring-boot --gav=com.foo:acme:1.0-SNAPSHOT --dir=../myproject
+camel export --build-tool=gradle --runtime=spring-boot --gav=com.foo:acme:1.0-SNAPSHOT -dir=../myproject
 ----
 
 === Exporting with JMX management included
@@ -1534,7 +1534,7 @@ To include JMX, you need to add `camel:management` in the `--deps` option, as sh
 
 [source,bash]
 ----
-camel export --runtime=quarkus --gav=com.foo:acme:1.0-SNAPSHOT --deps=camel:management --dir=../myproject
+camel export --runtime=quarkus --gav=com.foo:acme:1.0-SNAPSHOT --deps=camel:management -dir=../myproject
 ----
 
 === Exporting with Camel CLI included
@@ -1544,7 +1544,7 @@ To be able to continue to use Camel CLI (i.e. `camel`), you need to add `camel:c
 
 [source,bash]
 ----
-camel export --runtime=quarkus --gav=com.foo:acme:1.0-SNAPSHOT --deps=camel:cli-connector --dir=../myproject
+camel export --runtime=quarkus --gav=com.foo:acme:1.0-SNAPSHOT --deps=camel:cli-connector -dir=../myproject
 ----
 
 === Configuring exporting