This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 4eb4774d77b2cd88d4ab0197f0968ed35a549dc8 Author: ex324 <[email protected]> AuthorDate: Tue Nov 17 14:22:57 2020 +0100 CAMEL-15858: enhance maven plugin documentation with http option --- .../src/main/docs/camel-restdsl-openapi-plugin.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tooling/maven/camel-restdsl-openapi-plugin/src/main/docs/camel-restdsl-openapi-plugin.adoc b/tooling/maven/camel-restdsl-openapi-plugin/src/main/docs/camel-restdsl-openapi-plugin.adoc index b571140..775e5d1 100644 --- a/tooling/maven/camel-restdsl-openapi-plugin/src/main/docs/camel-restdsl-openapi-plugin.adoc +++ b/tooling/maven/camel-restdsl-openapi-plugin/src/main/docs/camel-restdsl-openapi-plugin.adoc @@ -60,7 +60,7 @@ in the `<configuration>` tag. | Parameter | Default Value | Description | `skip` | `false` | Set to `true` to skip code generation. | `filterOperation` | | Used for including only the operation ids specified. Multiple ids can be separated by comma. Wildcards can be used, eg `find*` to include all operations starting with `find`. -| `specificationUri` | `src/spec/openapi.json` | URI of the OpenApi specification, supports filesystem paths, HTTP and classpath resources, by default `src/spec/openapi.json` within the project directory. Supports JSON and YAML. +| `specificationUri` | `src/spec/openapi.json` | URI of the OpenApi specification, supports filesystem paths, HTTP and classpath resources, by default `src/spec/openapi.json` within the project directory. Supports JSON and YAML. | `auth` | | Adds authorization headers when fetching the OpenApi specification definitions remotely. Pass in a URL-encoded string of name:header with a comma separating multiple values. | `className` | from `title` or `RestDslRoute` | Name of the generated class, taken from the OpenApi specification title or set to `RestDslRoute` by default | `packageName` | from `host` or `rest.dsl.generated` | Name of the package for the generated class, taken from the OpenApi specification host value or `rest.dsl.generated` by default @@ -136,7 +136,7 @@ in the `<configuration>` tag. | Parameter | Default Value | Description | `skip` | `false` | Set to `true` to skip code generation. | `filterOperation` | | Used for including only the operation ids specified. Multiple ids can be separated by comma. Wildcards can be used, eg `find*` to include all operations starting with `find`. -| `specificationUri` | `src/spec/openapi.json` | URI of the OpenApi specification, by default `src/spec/openapi.json` within the project directory. Supports JSON and YAML. +| `specificationUri` | `src/spec/openapi.json` | URI of the OpenApi specification, supports filesystem paths, HTTP and classpath resources, by default `src/spec/openapi.json` within the project directory. Supports JSON and YAML. | `auth` | | Adds authorization headers when fetching the OpenApi specification definitions remotely. Pass in a URL-encoded string of name:header with a comma separating multiple values. | `outputDirectory` | `generated-sources/restdsl-openapi` | Where to place the generated source file, by default `generated-sources/restdsl-openapi` within the project directory | `fileName` | `camel-rest.xml` | The name of the XML file as output.
