admin管理员组文章数量:1346304
I'm using the Maven plugin from OpenAPI Generator (version 7.12.0) in my project. It works fine and everything is well generated, but it uses Spring Boot version 3.1.3 (which come with some nice vulnerabilities). I've just updated my project to SB 3.4.4, and it would be nice if the generated code could use that version too, or at least one that doesn't have any vulnerabilities.
Is it any way to force this? I've looked at the doc and I didn't find any mention to this.
Edit: To add some info and clarify, it's a multi module application and the parent POM has the version 3.4.4 on it. The module where I generated the code uses that version too, however, the POM generated by OpenAPI has the 3.1.3.
Edit2: Here is the plugin configuration
<plugin>
<groupId>.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>${openapi.maven.plugin.version}</version>
<configuration>
<configOptions>
<useSpringBoot3>true</useSpringBoot3>
<useJakartaEe>true</useJakartaEe>
</configOptions>
</configuration>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${project.basedir}/src/main/resources/contract/openapi.yml</inputSpec>
<generatorName>spring</generatorName>
<generateAliasAsModel>true</generateAliasAsModel>
<generateApiTests>false</generateApiTests>
<generateModelTests>false</generateModelTests>
<configOptions>
<dateLibrary>java8-localdatetime</dateLibrary>
<interfaceOnly>true</interfaceOnly>
<java8>true</java8>
<library>spring-boot</library>
<additionalModelTypeAnnotations>
@com.fasterxml.jackson.annotation.JsonInclude(com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL)
@lombok.extern.slf4j.Slf4j
@lombok.Data
</additionalModelTypeAnnotations>
<requestMappingMode>api_interface</requestMappingMode>
<modelPackage>${project.groupId}.model</modelPackage>
<apiPackage>${project.groupId}.api</apiPackage>
<invokerPackage>${project.groupId}.invoker</invokerPackage>
</configOptions>
<globalProperties>
<skipFormModel>false</skipFormModel>
</globalProperties>
</configuration>
</execution>
</executions>
</plugin>
本文标签: Can I force a specific Spring Boot version when using OpenAPI Generator Maven pluginStack Overflow
版权声明:本文标题:Can I force a specific Spring Boot version when using OpenAPI Generator Maven plugin? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743827981a2545997.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论