maven冲突解决-enforcer插件介绍

本文介绍了Maven Enforcer插件如何帮助解决jar包冲突问题。通过展示基本配置、执行命令、目标选项以及规则应用,包括dependencyConvergence和bannedDependencies等,强调了自定义检查规则以检测类冲突的重要性。
摘要由CSDN通过智能技术生成
项目使用maven管理jar依赖时有时候会有一些jar之间冲突和类冲突的情况,需要人肉排查。

maven插件enforcer正是解决此问题排查的工具

enforcer插件基本配置及规则列表

enforcer配置示例
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-enforcer-plugin</artifactId>
    <version>1.4.1</version>
    <executions>
        <execution>
            <id>enforce-dependencies</id>
            <goals>
                <goal>display-info</goal>
                <goal>enforce</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <rules>
            <requireMavenVersion>
                <version>[3.0.3,)</version>
            </requireMavenVersion>
 
            <requireJavaVersion>
                <version>1.7.0</version>
            </requireJavaVersion>
        </rules>
        <fail>true</fail>
    </configuration>
</plugin>

该插件默认绑定在validate阶段,有三个目标 display-info和enforce、help

  • display-info用于显示基本环境信息
  • enforce用于规则检查
  • help帮助信息,mvn enforcer:help -Ddetail=true -Dgoal=<goal-name>

该插件内置完整的规则列表:http://maven.apache.org/enforcer/enforcer-rules/index.html

执行命令

  •  enforcer:display-info enforcer:enforce

         

  • enforcer:help -Ddetail=true -Dgoal=enforce
            

enforce目标

支持三个选项: 

  • skip - a quick way to skip checks via a profile or using -Denforcer.skip=true from the command line.
  • fail - if the goal should fail the build when a rule fails. The default is true. If false, the errors will be logged as warnings.
  • failFast - if the goal should stop checking after the first failure. The default is false.

例如:failFast,规则检查不通过就构建失败 

<failFast> true </failFast>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值