IntelliJ IDEA 14 Maven 依赖问题

maven 多项目之间依赖,install 没有问题,只是在发布到tomcat 启动的时候编译  》》》》我们在启动项目或编译时:报的错如下:


解决方法:可能是依赖重复;

To solve these kind of problems need to use Analyze Module dependencies in InteliJ-idea.

File Menu > Analyze > Module Dependencies

This shows the list of all projects which have cyclic dependencies and should be resolved first.

This feature helps you to find the problem.

意思是打开 File Menu > Analyze > Module Dependencies ,出问题的项目会显示为红色.

然后红色的项目之间存在循环依赖问题,查看一下pom文件并去掉重复依赖就好了.

步骤如下:


有错的依赖,会变成红色。

猜你喜欢

转载自blog.csdn.net/xmz1193184480/article/details/80016096