天天看点

maven install 打包失败,程序包***不存在,找不到符号或者 找不到符号

在公共模块的pom中添加以下一下代码:module a 依赖 公共模块中commom的 module  ,a打包的时候报“程序包***不存在,找不到符号”错误,都是module  依赖公共的模块。

1.在公共模块或者当前模块下加入打包工具

​
<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<classifier>exec</classifier>
				</configuration>
			</plugin>
		</plugins>
	</build>

​
           

或者子模块使用 pom 打包方式即可解决

<packaging>pom</packaging>
           

继续阅读