Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
// AUTO-GENERATED by camel-package-maven-plugin - DO NOT EDIT THIS FILE
= camel bind

Bind source and sink Kamelets as a new Camel integration
DEPRECATED: Bind source and sink Kamelets as a new Camel integration


CAUTION: This command is deprecated.


== Usage
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

// AUTO-GENERATED by camel-package-maven-plugin - DO NOT EDIT THIS FILE
= camel cmd route-diagram

Display Camel route diagram in the terminal


== Usage

[source,bash]
----
camel cmd route-diagram [options]
----



== Options

[cols="2,5,1,2",options="header"]
|===
| Option | Description | Default | Type
| `--filter` | Filter route by filename or route id | | String
| `--output` | Save diagram to a PNG file instead of displaying in terminal | | String
| `--theme,--colors` | Color theme preset (dark, light, transparent) or custom colors (e.g. bg=#1e1e1e:from=#2e7d32:to=#1565c0). Use bg= for transparent. | dark | String
| `--width` | Image width in pixels | 0 | int
| `-h,--help` | Display the help and sub-commands | | boolean
|===


Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ camel cmd [options]
| xref:jbang-commands/camel-jbang-cmd-reload.adoc[reload] | Trigger reloading Camel
| xref:jbang-commands/camel-jbang-cmd-reset-stats.adoc[reset-stats] | Reset performance statistics
| xref:jbang-commands/camel-jbang-cmd-resume-route.adoc[resume-route] | Resume Camel routes
| xref:jbang-commands/camel-jbang-cmd-route-diagram.adoc[route-diagram] | Display Camel route diagram in the terminal
| xref:jbang-commands/camel-jbang-cmd-route-structure.adoc[route-structure] | Dump Camel route structure
| xref:jbang-commands/camel-jbang-cmd-send.adoc[send] | Send messages to endpoints
| xref:jbang-commands/camel-jbang-cmd-start-group.adoc[start-group] | Start Camel route groups
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ TIP: You can also use `camel --help` or `camel <command> --help` to see availabl
[cols="2,5",options="header"]
|===
| Command | Description
| xref:jbang-commands/camel-jbang-bind.adoc[camel bind] | Bind source and sink Kamelets as a new Camel integration
| xref:jbang-commands/camel-jbang-bind.adoc[camel bind] | DEPRECATED: Bind source and sink Kamelets as a new Camel integration
| xref:jbang-commands/camel-jbang-catalog.adoc[camel catalog] | List artifacts from Camel Catalog
| xref:jbang-commands/camel-jbang-cmd.adoc[camel cmd] | Performs commands in the running Camel integrations, such as start/stop route, or change logging levels.
| xref:jbang-commands/camel-jbang-completion.adoc[camel completion] | Generate completion script for bash/zsh
Expand Down Expand Up @@ -43,4 +43,5 @@ TIP: You can also use `camel --help` or `camel <command> --help` to see availabl
| xref:jbang-commands/camel-jbang-transform.adoc[camel transform] | Transform message or Camel routes
| xref:jbang-commands/camel-jbang-update.adoc[camel update] | Update Camel project
| xref:jbang-commands/camel-jbang-version.adoc[camel version] | Manage Camel versions
| xref:jbang-commands/camel-jbang-wrapper.adoc[camel wrapper] | Install Camel wrapper scripts for version pinning
|===
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ camel debug [options]
| `--show-exchange-properties` | Show exchange properties in debug messages | false | boolean
| `--show-exchange-variables` | Show exchange variables in debug messages | true | boolean
| `--show-headers` | Show message headers in debug messages | true | boolean
| `--skip-plugins` | Skip plugins during export | false | boolean
| `--skip-plugins` | Skip resolving plugin dependencies | false | boolean
| `--source` | Prefer to display source filename/code instead of IDs | | boolean
| `--source-dir` | Source directory for dynamically loading Camel file(s) to run. When using this, then files cannot be specified at the same time. | | String
| `--spring-boot-version` | Spring Boot version | RuntimeType.SPRING_BOOT_VERSION | String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ camel run [options]
| `--reload,--dev` | Enables dev mode (live reload when source files are updated and saved) | | boolean
| `--repo,--repos` | Additional maven repositories (Use commas to separate multiple repositories) | | String
| `--runtime` | Runtime () | camel-main | RuntimeType
| `--skip-plugins` | Skip plugins during export | false | boolean
| `--skip-plugins` | Skip resolving plugin dependencies | false | boolean
| `--source-dir` | Source directory for dynamically loading Camel file(s) to run. When using this, then files cannot be specified at the same time. | | String
| `--spring-boot-version` | Spring Boot version | RuntimeType.SPRING_BOOT_VERSION | String
| `--stub` | Stubs all the matching endpoint uri with the given component name or pattern. Multiple names can be separated by comma. (all = stub all endpoints). | | String
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

// AUTO-GENERATED by camel-package-maven-plugin - DO NOT EDIT THIS FILE
= camel transform dataweave

Convert DataWeave scripts to DataSonnet format


== Usage

[source,bash]
----
camel transform dataweave [options]
----



== Options

[cols="2,5,1,2",options="header"]
|===
| Option | Description | Default | Type
| `--expression,-e` | Inline DataWeave expression to convert | | String
| `--include-comments` | Include conversion notes as comments in output | true | boolean
| `--input,-i` | Input .dwl file or directory containing .dwl files | | String
| `--output,-o` | Output .ds file or directory (defaults to stdout) | | String
| `-h,--help` | Display the help and sub-commands | | boolean
|===


Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ camel transform [options]
[cols="2,5",options="header"]
|===
| Subcommand | Description
| xref:jbang-commands/camel-jbang-transform-dataweave.adoc[dataweave] | Convert DataWeave scripts to DataSonnet format
| xref:jbang-commands/camel-jbang-transform-message.adoc[message] | Transform message from one format to another via an existing running Camel integration
| xref:jbang-commands/camel-jbang-transform-route.adoc[route] | Transform Camel routes to XML or YAML format
|===
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

// AUTO-GENERATED by camel-package-maven-plugin - DO NOT EDIT THIS FILE
= camel wrapper

Install Camel wrapper scripts for version pinning


== Usage

[source,bash]
----
camel wrapper [options]
----



== Options

[cols="2,5,1,2",options="header"]
|===
| Option | Description | Default | Type
| `--camel-version` | Camel version to pin (defaults to current version) | | String
| `--dir,--directory` | Directory where wrapper files will be created | . | String
| `--repo-url` | Maven repository URL for downloading the launcher | DEFAULT_REPO_URL | String
| `-h,--help` | Display the help and sub-commands | | boolean
|===


Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ public void execute(String... args) {
.addSubcommand("reload", new CommandLine(new CamelReloadAction(this)))
.addSubcommand("reset-stats", new CommandLine(new CamelResetStatsAction(this)))
.addSubcommand("resume-route", new CommandLine(new CamelRouteResumeAction(this)))
.addSubcommand("route-diagram", new CommandLine(new CamelRouteDiagramAction(this)))
.addSubcommand("route-structure", new CommandLine(new CamelRouteStructureAction(this)))
.addSubcommand("send", new CommandLine(new CamelSendAction(this)))
.addSubcommand("start-group", new CommandLine(new CamelRouteGroupStartAction(this)))
Expand Down
Loading