民间,
我们继承父POM.xml的版本并在子代中使用它。
例如我们在孩子的pom.xml中有以下内容。
<parent>
<groupId>com.maventest</groupId>
<artifactId>myproject</artifactId>
<relativePath>../main/pom.xml</relativePath>
<version>${my-project-version}</version>
</parent>
1)版本$ {my-project-version}是动态的,来自父
的pom.xml2)我们也想独立于父母建立子模块,因此我们想在独立构建子模块的同时完全忽略这个父标签吗?