Description
I'm using openapi-generator-maven-plugin 4.1.3 and the spring generator uses an old swagger dependency.
expected:
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>2.0.10</version>
</dependency>
actual:
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>1.5.23</version>
</dependency>
And the generated code uses import io.swagger.annotations.*
instead of import io.swagger.v3.oas.annotations.*
Description
I'm using
openapi-generator-maven-plugin4.1.3and thespringgenerator uses an old swagger dependency.expected:
actual:
And the generated code uses
import io.swagger.annotations.*instead of
import io.swagger.v3.oas.annotations.*