Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.3.9.RELEASE:repackage (repackage) on project shoop-thirdparty: Execution repackage of goal org.springframework.boot:spring-boot-maven-plugin:2.3.9.RELEASE:repackage failed: Unable to find main class
搜了好久,有人提到需要spring-boot-maven-plugin
这个插件。
添加以后,有的可以了,有的不行。
最后发现是插件必须配置<skip>true</skip>
这个节点。
完整来说,就是在pom文件(或者父pom中),有这样一个配置:
<build>
<finalName>${project.artifactId}-${maven.build.timestamp}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</