-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Description
I have the following configuration, where my openapi_template.yml
file is a template that specifies openapi: 3.1.0
. This works fine on version 2.2.28 but when upgrading to versions 2.2.32 or 2.2.30 the generated file uses openapi: 3.0.1
<plugin>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-maven-plugin-jakarta</artifactId>
<version>${swagger.version}</version>
<configuration>
<outputFileName>openapi</outputFileName>
<outputPath>${project.build.directory}</outputPath>
<outputFormat>YAML</outputFormat>
<openapiFilePath>${project.basedir}/src/main/resources/openapi_template.yml</openapiFilePath>
<ignoredRoutes>/application.wadl</ignoredRoutes>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>resolve</goal>
</goals>
</execution>
</executions>
</plugin>
Metadata
Metadata
Assignees
Labels
No labels