Is there a way to resolve/suppress the error "No marketplace entries found to handle swagger-codegen-maven-plugin:3.0.23:generate in Eclipse." when importing projects into Eclipse?
swagger-codegen in my pom.xml is shown below,
<plugin>
<groupId>io.swagger.codegen.v3</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>3.0.23</version>
<executions>
<execution>
<id>generate-swagger-model</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
....
</configuration>
</execution>
</executions>
</plugin>
and there is an error saying "Plugin execution is not covered by lifecycle configuration", as shown below.
I looked at this question and reply How to solve "Plugin execution not covered by lifecycle configuration" for Spring Data Maven Builds, but I dont have parent-child pom files, its a standalone project. Also tried the other solution, putting the plugin inside pluginManagement
and the swagger-codegen
stopped working, meaning, it stopped generating java files.
The errors are not causing any build issues, or impacting any development. But curious on how to resolve/suppress these from happening!