如何在继承版本时以编程方式查找 maven 依赖项的确切版本



我有一个maven项目,其中许多版本的子pom依赖项都列在父pom的<dependencyManagement>标签下。这棵绒球树可以有任何深度。

我的问题是,当给出pom.xml时,如何使用java解析其依赖项的精确(继承)版本?

所需的输出是当我们在pom.xml文件上运行mvn dependency:resolve -DincludeTransitive=false时给出的输出

例如,假设父 pom 在 <dependencyManagement>

<dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>group-a</groupId>
        <artifactId>artifact-a</artifactId>
        <version>1.0</version>
      </dependency>
      <dependency>
        <groupId>group-a</groupId>
        <artifactId>artifact-b</artifactId>
        <version>1.0</version>
        <type>bar</type>
        <scope>runtime</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>

和子pom.xml具有以下依赖项

<dependencies>
    <dependency>
      <groupId>group-a</groupId>
      <artifactId>artifact-a</artifactId>
    </dependency>
    <dependency>
      <groupId>group-a</groupId>
      <artifactId>artifact-b</artifactId>
    </dependency>
  </dependencies>

如何使用 Java 以编程方式检索 group-a:artifact-a 和 group-b:artifact-b 的版本?

谢谢。

尝试跑步

mvn dependency:tree -Doutput=/path/to/file

mvn dependency:tree -DoutputFile=/path/to/file

来自 maven 文档: http://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html

相关内容

  • 没有找到相关文章

最新更新