我在一个根项目中有一个多模块Maven项目,我只想在包含许多模块的根项目中添加另一个maven模块,因此从pom.xml子对象调用父对象后,出现以下错误:< / p>
父pom:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.8:analyze-dep-mgt (default) on project calender: Found Dependency errors.
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.8:analyze-dep
-mgt (default) on project calender: Found Dependency errors.
答案 0 :(得分:0)
analyze-dep-mgt是一种mojo,它可以在构建的最终解决方案中检测是否存在依赖项不匹配。 (https://maven.apache.org/plugins/maven-dependency-plugin/analyze-dep-mgt-mojo.html)
您的依赖关系可能有问题。查看此文档以获取有关如何构造pom的更多信息。 (https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html)
我最近在添加新的依赖项时遇到此错误,在该新依赖项中,传递性依赖项导致相同的目标失败。使用较旧版本的依赖项可以解决此问题。