Bug Report Checklist
Description
The class AbstractOpenApiSchema is generated into the model package but declares a model package within the invoker package
Not sure if you prefer a pull request over a bug report. so starting with a bug report and a suggested fix below,
openapi-generator version
openapi-generator-maven-plugin 5.0.0
OpenAPI declaration file content or url
Does not depend on a specific openapi spec
Generation Details
Maven Plugin Configuration
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>5.0.0</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<generatorName>java</generatorName>
<inputSpec>${openapi.spec.path}</inputSpec>
<apiPackage>com.example.api</apiPackage>
<invokerPackage>com.example.invoker</invokerPackage>
<modelPackage>com.example.model</modelPackage>
<configOptions>
<library>native</library>
<dateLibrary>java8</dateLibrary>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
Steps to reproduce
- add plugin definition above to a maven project's pom
- reference any json based openapi spec as ${openapi.spec.path} property
- run mvn mvn clean generate-sources
- check AbstractOpenApiSchema.java file for valid package declaration (is generated into com.example.model but declares com.example.invoker.model as package
Related issues/PRs
Suggest a fix
Depending the result expected, the mustach template should use the model package declaration instead of {{invokerPackage}}.model
|
package {{invokerPackage}}.model; |
as this is also the case in the native petstore example:
https://github.com/OpenAPITools/openapi-generator/blob/edf153eedef58bd04ffa02a56ecbe60a7165bf0f/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AbstractOpenApiSchema.java
Bug Report Checklist
Description
The class AbstractOpenApiSchema is generated into the model package but declares a model package within the invoker package
Not sure if you prefer a pull request over a bug report. so starting with a bug report and a suggested fix below,
openapi-generator version
openapi-generator-maven-plugin 5.0.0
OpenAPI declaration file content or url
Does not depend on a specific openapi spec
Generation Details
Maven Plugin Configuration
Steps to reproduce
Related issues/PRs
Suggest a fix
Depending the result expected, the mustach template should use the model package declaration instead of {{invokerPackage}}.model
openapi-generator/modules/openapi-generator/src/main/resources/Java/libraries/native/AbstractOpenApiSchema.mustache
Line 3 in edf153e
as this is also the case in the native petstore example: https://github.com/OpenAPITools/openapi-generator/blob/edf153eedef58bd04ffa02a56ecbe60a7165bf0f/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AbstractOpenApiSchema.java