Folks,
We are inheriting version of parent POM.xml and using it in the child.
e.g we have following in the pom.xml of the child.
<parent>
<groupId>com.maventest</groupId>
<artifactId>myproject</artifactId>
<relativePath>../main/pom.xml</relativePath>
<version>${my-project-version}</version>
</parent>
1) Version ${my-project-version} is dynamic and coming from pom.xml of parent
2) We want to also build child module independently of parent and hence we want to ignore this parent tag altogether while building child module independently is it possible?