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

[BUG] Java generator - maven plugin - withXml maven plugin configuration option is not honored during maven build #3839

Open
RockyMM opened this issue Sep 5, 2019 · 0 comments · May be fixed by #18568

Comments

@RockyMM
Copy link
Contributor

RockyMM commented Sep 5, 2019

Description

I used generatorName java with a simple Swagger 3.0 spec file.

I noticed that the withXml option of the Maven plugin is not used. After issuing mvn clean generate-sources the sources are not annotated with @Xml* annotations.

This can be verified with verbose maven pluging configuration option set to true where at the very end of execution I noticed:

"modelDocPath" : "docs/",
  "withXml" : false,
  "scmDeveloperConnection" : "scm:git:[email protected]:openapitools/openapi-generator.git",
  "feignVersion" : "9.x",
  "licenseUrl" : "http://unlicense.org",
  "jsr310" : "true",

To get generated model with @Xml* annotations, I used additionalProperties.

openapi-generator version
            <groupId>org.openapitools</groupId>
            <artifactId>openapi-generator-maven-plugin</artifactId>
            <version>4.1.1</version>

Seems to be working with

			<groupId>io.swagger.codegen.v3</groupId>
			<artifactId>swagger-codegen-maven-plugin</artifactId>
			<version>3.0.11</version>
OpenAPI declaration file content or url

Complete Maven example project: https://github.com/RockyMM/openapi-modelgen-test

Command line used for generation

mvn clean generate-sources

Suggest a fix

After 10 minute search (without cloning openapi-generator) I would start looking in AbstractJavaCodegen class, as the maven plugin class seems to be working correctly. But then again, I am really not not not familiar with the project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
1 participant