Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide documentation to export to Camel Quarkus project with #2072

Merged
Merged
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
15 changes: 15 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,18 @@ This extension provides completion, validation and documentation features for Ap
- [XML DSL Only](./content/xml-dsl-only.md)
- Auto-completion for referenced IDs of `direct`, `direct VM`, `VM` and `SEDA` components
- Find references for `direct` and `direct VM` components

## How to export with Red Hat productized version

To export a standalone Camel file to a Red Hat productized version, you can use an `application.properties` file.

For instance for Quarkus, you can provide this content:
```
camel.jbang.repos=https://maven.repository.redhat.com/ga/
# The version is the Quarkus bom https://maven.repository.redhat.com/ga/com/redhat/quarkus/platform/quarkus-camel-bom
camel.jbang.quarkusVersion=3.15.2.redhat-00003
camel.jbang.quarkusGroupId=com.redhat.quarkus.platform
```
Then you can use as usual the command `Camel: Create a Camel Quarkus project` from the command palette.

Note you can further customize the export using this file, see the [upstream documentation](https://camel.apache.org/manual/camel-jbang.html#_configuring_exporting) for available parameters.
Loading