Maven Enforcer插件可识别Camel-CXF中的依赖项收敛问题

时间:2019-01-09 17:32:41

标签: maven apache-camel transitive-dependency maven-enforcer-plugin camel-cxf

Maven强制实施器插件正在使用我使用的第3方库来识别代码收敛问题。在仍然在项目的其余部分上继续在项目上运行执行程序插件的同时,如何忽略此问题?或者在不更改库版本的情况下,我应该如何解决该问题?

我的项目使用camel-cxf 2.13.2,事实证明它取决于jaxb-impl的两个单独的传递版本; 2.1.13和2.2.6。强制执行程序插件会识别出此错误,并使构建失败。

这是我配置插件的方式:

<plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-enforcer-plugin</artifactId>
        <version>1.3.1</version>
        <configuration>
            <rules>
                <DependencyConvergence/>
            </rules>
        </configuration>
    </plugin>

运行mvn enforcer:enforce时我会得到

Rule 0: org.apache.maven.plugins.enforcer.DependencyConvergence failed with message:
Failed while enforcing releasability the error(s) are [
Dependency convergence error for com.sun.xml.bind:jaxb-impl:2.2.6 paths to dependency are:
+-com.myModule:module:18.0.0-SNAPSHOT
  +-org.apache.camel:camel-cxf:2.13.2
    +-org.apache.camel:camel-core:2.13.2
      +-com.sun.xml.bind:jaxb-impl:2.2.6
and
+-com.myModule:module:18.0.0-SNAPSHOT
  +-org.apache.camel:camel-cxf:2.13.2
    +-org.apache.cxf:cxf-rt-bindings-soap:2.7.11
      +-org.apache.cxf:cxf-rt-databinding-jaxb:2.7.11
        +-com.sun.xml.bind:jaxb-impl:2.1.13
and
+-com.myModule:module:18.0.0-SNAPSHOT
  +-org.apache.cxf:cxf-rt-management:2.7.11
    +-org.apache.cxf:cxf-rt-core:2.7.11
      +-com.sun.xml.bind:jaxb-impl:2.1.13

2 个答案:

答案 0 :(得分:1)

我认为您不希望Maven在出现收敛错误时使构建阶段失败。 在这种情况下,您需要在配置中设置fail = false标志,这样它只会注销收敛错误并继续下一阶段。

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-enforcer-plugin</artifactId>
  <version>3.0.0-M1</version>
  <executions>
    <execution>
      <id>dependency-convergence</id>
      <phase>install</phase>
      <goals>
        <goal>enforce</goal>
      </goals>
      <configuration>
        <rules>
          <DependencyConvergence />
        </rules>
        <fail>false</fail>
      </configuration>
    </execution>
    <executions>
      <plugin>

注意:maven-enforcer-plugin 1.3.1版本非常旧。考虑将其升级到最新的3.x.x。

答案 1 :(得分:0)

最后,我将排除项添加到特定的子依赖项中,这些依赖项是在jaxb-impl的较早版本中出现的。

<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-core</artifactId>
    <version>${cxf.version}</version>
    <exclusions>
        <exclusion>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-impl</artifactId>
        </exclusion>
    </exclusions>
    <scope>${framework.scope}</scope>
</dependency>
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-databinding-jaxb</artifactId>
    <version>${cxf.version}</version>
    <exclusions>
        <exclusion>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-impl</artifactId>
        </exclusion>
    </exclusions>
</dependency>

通过这种方式,我仍然可以在项目的其余部分上运行执行程序插件,并且如果发现新的收敛问题,则构建失败。