maven-enforcer-plugin报错排查

  1. 今天使用mvn compile的时候项目报错:
Failed to execute goal org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce (enforce) on project tnotice-client: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.

一时间陷入了懵逼状态,这个插件的报错是第一次碰到。此文只是阐述解决方式。
maven-enforcer-plugin报错排查

  1. 使用 mvn validate 命令排查。
    maven-enforcer-plugin报错排查
    maven-enforcer-plugin报错排查

上面截图可以看出存在依赖冲突依赖。

3. 排除冲突的依赖。
maven-enforcer-plugin报错排查

  1. 使用 mvn validate 再次尝试,问题解决
    maven-enforcer-plugin报错排查

  2. 再次mvn compile 问题解决。

参考文章:https://www.cnblogs.com/qyf404/p/4829327.html

上一篇:Reduction operations


下一篇:使用mvn构建mapreduce程序