3

我试图弄清楚是否可以检查 Maven 依赖项在项目的配置配置中是否仍然兼容。

这是我的测试设置:

有3个项目。Child-A, Child-B, Child-C.

Child-A有 2 个版本,彼此不兼容。版本0.0.1-SNAPSHOT有方法

public void myMethod(String oneParameter)

版本0.0.2-SNAPSHOT将此方法更改为

public void myMethod(String oneParameter, String secondParameter)

Child-B依赖于Child-Ain Version并使用一个参数0.0.1-SNAPSHOT调用该方法。

public class ChildB {
    public void callChild(String myParam) {
        final ChildA test = new ChildA();
        String methodParam = String.format("%s is calling %s with Parameter %s ", this.getClass().getName(),
                test.getClass().getName(), myParam);
        test.myMethod(methodParam);
    }
}

Child-C现在有对 Child-B 的依赖和对 Child-A Version 的依赖0.0.2-SNAPSHOT

Child-CChild-B以这种方式调用:

public static void main(String[] args) {
    ChildB inner = new ChildB();
    inner.callChild(" Parameter from main method! ");
}

对于编译器来说这很好,但在运行时Child-B会遇到麻烦,因为Child-A版本中存在0.0.2-SNAPSHOT,因此只有一个参数的方法不再存在。

我正在尝试以这种方式配置我的 maven 设置,以便在Child-C构建时检查其依赖项的签名/兼容性及其有效 pom.xml 的设置。

我认为 maven animal-sniffer 插件可能是一个解决方案,但没有找到检查内部依赖关系的部分。

有人知道如何检查这些行为吗?

4

2 回答 2

1

您可以使用 maven 强制器来实现依赖收敛。

https://maven.apache.org/enforcer/maven-enforcer-plugin/

<build>
<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-enforcer-plugin</artifactId>
        <version>1.0.1</version>
        <executions>
            <execution>
                <id>enforce</id>
                <configuration>
                    <rules>
                        <DependencyConvergence/>
                    </rules>
                </configuration>
                <goals>
                    <goal>enforce</goal>
                </goals>
                <phase>validate</phase>
            </execution>
        </executions>
    </plugin>
</plugins>

这将向您展示依赖收敛问题,如下所示:

  Dependency convergence error for org.codehaus.jackson:jackson-jaxrs:1.7.1 paths to dependency are:
+-com.nodeable:server:1.0-SNAPSHOT
  +-org.mule.modules:mule-module-jersey:3.2.1
    +-com.sun.jersey:jersey-json:1.6
      +-org.codehaus.jackson:jackson-jaxrs:1.7.1
and
+-com.nodeable:server:1.0-SNAPSHOT
  +-org.mule.modules:mule-module-jersey:3.2.1
    +-org.codehaus.jackson:jackson-jaxrs:1.8.0

这样,您可以确保您没有同一个库的多个版本作为依赖项,并消除了类加载问题的可能性。

如果您提到的方法的签名发生了变化,您应该能够在编译时看到错误。

于 2018-12-13T08:39:10.213 回答
1

问题不在于 Maven。即使两个版本在运行时都存在,JVM 也只会加载一个版本,因此由于缺少一种或另一种方法,您将获得运行时异常。

最好的解决方案是将单参数方法添加到版本 0.0.2 并在所有 pom.xml 中指定该版本。如果这不起作用,您将需要修改您的代码,以便只调用两参数方法。

于 2017-07-20T09:33:17.843 回答