Maven install异常
2024-06-03 09:10:05 阅读次数:24
install,Maven
1、问题描述
maven install异常:Unable to find main class。
maven在对parent工程clean之后,进行 install,Common工程报错Unable to find main class,因为Common工程是一些常用工具类,所以没有添加启动类。
2、解决方法
把父工程的 pom.xml 文件中<build>去掉,子工程中哪个需要打包,就在其 pom.xml 文件中添加 <build>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_16231213/9875877,作者:会下蛋的咯咯,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:JVM系列四:生产环境参数实例及分析【生产环境实例增加中】
下一篇:Logback文件详解