概述
1、Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:3.1.1:analyze-only (default) on project presto-main: Dependency problems found -> [Help 1]
解决方法:
1、用mvn 命令分析依赖问题
mvn dependency:analyze
经过打印日志发现org.glassfish.jersey.core:jersey-common依赖问题,则在presto-main下的pom.xml里面build-》plugins-》标签下增加:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<!-- TODO: Remove this once fixed -->
<ignoredDependencies>
<ignoredDependency>org.glassfish.jersey.core:jersey-common:jar</ignoredDependency>
</ignoredDependencies>
</configuration>
</plugin>
最后
以上就是壮观电灯胆为你收集整理的prestoDB windows 下idea 编译避坑的全部内容,希望文章能够帮你解决prestoDB windows 下idea 编译避坑所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复