Is there a way to inherit properties from parent pom. E.g: I want to replace ${publish.dir} in child pom with the value from parent pom.
parent pom:
<properties> <publish.dir>/tmp/publish</publish.dir> </properties>
child pom:
<outputDirectory>${publish.dir}/dev</outputDirectory>