diff --git a/docs/usage.md b/docs/usage.md index 7cf4d55d00f..18cb3b9f367 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -426,6 +426,8 @@ To pass more than one generator property, these can be combined via comma: --additional-properties=key1=value1,key2=value2 ``` +For the full list of generator-specified parameters, refer to [generators docs]((./generators.md)) + #### Type Mappings and Import Mappings Most generators allow for types bound to the OpenAPI Specification's types to be remapped to a user's desired types. Not _all_ type mappings can be reassigned, as some generators define mappings which are tightly coupled to the built-in templates. diff --git a/modules/openapi-generator-gradle-plugin/README.adoc b/modules/openapi-generator-gradle-plugin/README.adoc index 4ba28fade88..4433832caf6 100644 --- a/modules/openapi-generator-gradle-plugin/README.adoc +++ b/modules/openapi-generator-gradle-plugin/README.adoc @@ -266,7 +266,7 @@ The gradle plugin is not currently published to https://plugins.gradle.org/m2/. |configOptions |Map(String,String) |None -|A map of options specific to a generator. +|A map of options specific to a generator. To see the full list of generator-specified parameters, please refer to [generators docs](https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators.md) |logToStderr |Boolean diff --git a/modules/openapi-generator-maven-plugin/README.md b/modules/openapi-generator-maven-plugin/README.md index 18f5668bf98..f7e6d3978df 100644 --- a/modules/openapi-generator-maven-plugin/README.md +++ b/modules/openapi-generator-maven-plugin/README.md @@ -51,7 +51,7 @@ mvn clean compile - `invokerPackage` - the package to use for the generated invoker objects - `modelNamePrefix` and `modelNameSuffix` - Sets the pre- or suffix for model classes and enums - `withXml` - enable XML annotations inside the generated models and API (only works with Java `language` and libraries that provide support for JSON and XML) -- `configOptions` - a map of language-specific parameters. To show a full list of generator-specified parameters (options), please use `configHelp` (explained below) +- `configOptions` - a map of language-specific parameters. To show a full list of generator-specified parameters (options), please use `configHelp` (explained below) or refer to [generators docs](../../docs/generators.md) - `configHelp` - dumps the configuration help for the specified library (generates no sources) - `ignoreFileOverride` - specifies the full path to a `.openapi-generator-ignore` used for pattern based overrides of generated outputs - `removeOperationIdPrefix` - remove operationId prefix (e.g. user_getName => getName)