When I do an install of a pom that has a parent where the parent version
element is specified via a property, the property isn't being expanded
in the generated installed or deployed pom.
Eg:
<parent>
...
<version>${env.version}</version>
</parent>
In the generated installed pom it is still specified as ${env.version}
instead of the expanded value.
At least in the version case, this is quite undesirable. And having to
edit every pom and hard code a new version for every build would not be
very pleasant as well as error prone (at least for a project with many
sub projects as I have). Any suggestions are appreciated?
Thanks,
Jpl