我有一个想要在 Docker 上运行的验收测试模块。为了让它工作,我必须复制它所有的父 pom,直到最后一个。我想知道是否可以使用依赖项中的父 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