From e0137f670c9ad7c9780a79712663990f84c23cfd Mon Sep 17 00:00:00 2001 From: William Cheng Date: Wed, 16 Jan 2019 10:32:28 +0800 Subject: [PATCH] Update Maven plugin README with new options (#1917) Update Maven plugin README with new options --- modules/openapi-generator-maven-plugin/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/openapi-generator-maven-plugin/README.md b/modules/openapi-generator-maven-plugin/README.md index 20e50aa9fe9..879622f2d8e 100644 --- a/modules/openapi-generator-maven-plugin/README.md +++ b/modules/openapi-generator-maven-plugin/README.md @@ -54,6 +54,11 @@ mvn clean compile - `configOptions` - a map of language-specific parameters. To show a full list of generator-specified parameters (options), please use `configHelp` (explained below) - `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) +- `logToStderr` - write all log messages (not just errors) to STDOUT +- `enablePostProcessFile` - enable file post-processing hook +- `skipValidateSpec` - skip spec validation +- `generateAliasAsModel` - generate alias (array, map) as model - `generateApis` - generate the apis (`true` by default) - `generateApiTests` - generate the api tests (`true` by default. Only available if `generateApis` is `true`) - `generateApiDocumentation` - generate the api documentation (`true` by default. Only available if `generateApis` is `true`)