来自依赖项的Maven父级

时间:2016-04-01 14:15:03

标签: java maven parent-pom

我有一个验收测试模块,我想在Docker上运行。为了使这个工作,我不得不复制它的所有父poms,直到最后一个。我想知道是否可以使用来自依赖项的父pom,如下所示:

<dependency>
    <groupId>group.id</groupId>
    <artifactId>artifact.id.parent</artifactId>
    <version>${project.version}</version>
    <type>pom</type>
</dependency>

会让Maven找到父

<parent>
    <groupId>group.id</groupId>
    <artifactId>artifact.id.parent</artifactId>
    <version>x.x.x-SNAPSHOT</version>
</parent>

假设验收测试模块版本也是x.x.x-SNAPSHOT

0 个答案:

没有答案