forked from loafle/openapi-generator-original
[maven-plugin] Allow to set User-Agent (#3777)
This commit is contained in:
parent
5a54aa5726
commit
d36dd47b12
@ -91,6 +91,7 @@ mvn clean compile
|
|||||||
| `reservedWordsMappings` | `openapi.generator.maven.plugin.reservedWordsMappings` | specifies how a reserved name should be escaped to. Otherwise, the default `_<name>` is used. For example `id=identifier`. You can also have multiple occurrences of this option
|
| `reservedWordsMappings` | `openapi.generator.maven.plugin.reservedWordsMappings` | specifies how a reserved name should be escaped to. Otherwise, the default `_<name>` is used. For example `id=identifier`. You can also have multiple occurrences of this option
|
||||||
| `skipIfSpecIsUnchanged` | `codegen.skipIfSpecIsUnchanged` | Skip the execution if the source file is older than the output folder (`false` by default. Can also be set globally through the `codegen.skipIfSpecIsUnchanged` property)
|
| `skipIfSpecIsUnchanged` | `codegen.skipIfSpecIsUnchanged` | Skip the execution if the source file is older than the output folder (`false` by default. Can also be set globally through the `codegen.skipIfSpecIsUnchanged` property)
|
||||||
| `engine` | `openapi.generator.maven.plugin.engine` | The name of templating engine to use, "mustache" (default) or "handlebars" (beta)
|
| `engine` | `openapi.generator.maven.plugin.engine` | The name of templating engine to use, "mustache" (default) or "handlebars" (beta)
|
||||||
|
| `httpUserAgent` | `openapi.generator.maven.plugin.httpUserAgent` | Sets custom User-Agent header value
|
||||||
|
|
||||||
|
|
||||||
### Custom Generator
|
### Custom Generator
|
||||||
|
@ -206,6 +206,12 @@ public class CodeGenMojo extends AbstractMojo {
|
|||||||
@Parameter(name = "ignoreFileOverride", property = "openapi.generator.maven.plugin.ignoreFileOverride", required = false)
|
@Parameter(name = "ignoreFileOverride", property = "openapi.generator.maven.plugin.ignoreFileOverride", required = false)
|
||||||
private String ignoreFileOverride;
|
private String ignoreFileOverride;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets custom User-Agent header value
|
||||||
|
*/
|
||||||
|
@Parameter(name = "httpUserAgent", property = "openapi.generator.maven.plugin.httpUserAgent", required = false)
|
||||||
|
private String httpUserAgent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* To remove operationId prefix (e.g. user_getName => getName)
|
* To remove operationId prefix (e.g. user_getName => getName)
|
||||||
*/
|
*/
|
||||||
@ -462,6 +468,10 @@ public class CodeGenMojo extends AbstractMojo {
|
|||||||
configurator.setIgnoreFileOverride(ignoreFileOverride);
|
configurator.setIgnoreFileOverride(ignoreFileOverride);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isNotEmpty(httpUserAgent)) {
|
||||||
|
configurator.setHttpUserAgent(httpUserAgent);
|
||||||
|
}
|
||||||
|
|
||||||
if (skipValidateSpec != null) {
|
if (skipValidateSpec != null) {
|
||||||
configurator.setValidateSpec(!skipValidateSpec);
|
configurator.setValidateSpec(!skipValidateSpec);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user