针对Maven打包时出现的“unable to find main class”错误,可以按照以下步骤进行排查和解决: 检查pom.xml配置: 确保在pom.xml文件中已经正确设置了主类(Main Class)。如果项目是一个Spring Boot项目,通常会在spring-boot-maven-plugin插件中配置mainClass属性。例如: xml <build> <plugins> <plu...
1、使用jenkins打包基于springboot的多web模块项目时出现Unable to find main class 15:05:33[ERROR]Failedtoexecute goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage(default)on project plat-cabinet:Executiondefaultof goal org.springframework.boot:spring-boot-maven-plugin:1.5.3...
一、Maven打包Spring Boot项目报错(repackage failed: Unable to find main class),排除寻找Main方法,一般用于被依赖的公用常量模块,解决方法如下: <build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><mainClass>none</mainClass>...
Execution repackage of goal org.springframework.boot:spring-boot-maven-plugin:2.1.6.RELEASE:repackage failed: Unable to find mainclass-> [Help1] 该错误的原因是api模块的父模块中包含了这个build插件,所有api模块也继承了这个插件,由于这个插件是针对XXXspringbootApplication.class这个入口类的,当api模块中没...
spring-boot-maven-plugin:2.5.3:repackage failed: Unable to find main class 1. 2. 3. 4. 5. 没办法那就接着造呗。 去网上搜了许多这种错误的解决方案,终于找到了: 该博客地址:https://www.dandelioncloud.cn/article/details/1370378236395646978 ...
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356) Caused by: org.apache.maven.plugin.PluginExecutionException: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.5.2.RELEASE:repackage failed: Unable to findmainclass ...
maven打包报错failed: Unable to find a single main class from the following candidates [com.zjq.xxxApplication,com.zjq.xxxUtil] 报错意思是:无法从多个类中找到唯一一个启动类。 解决办法 如果当前工程为启动工程,可以在pom文件的打包插件中按照如下配置指定启动的application路径,具体如下: ...
简介: Maven问题-Unable to find main class 问题 同一问题的原因可能存在多种,这里的方式仅供参考 描述:使用jenkins打包基于springboot的多web模块项目时出现Unable to find main class 15:05:33 [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage (...
简介:idea中maven打包工具类 repackage failed: Unable to find main class 今天遇到一个着实让人蛋疼的问题,repackage failed: Unable to find main class 查看次维护项目是一个多模块依赖的项目,通用工具类打包的时候上面的错误,耽误了我十几分钟,后来忽然想到,工具包打包的时候不应该有maven的依赖,去掉pom文件中的...
2、Unable to find main class 错误信息: 解决方案: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <!--设置入口函数--> <mainClass>com.aden.Application</mainClass> ...