Is it possible to make properties in parent pom not overridable by the module pom?
For example:
if module pom says:
<properties>
<someProperty>some value to be replaced</properties>
</properties>
and parent pom already has it declared as:
<properties>
<someProperty>strongValue</someProperty>
</properties>
effective module pom should be:
<properties>
<someProperty>strongValue</someProperty>
</properties>
but it is currently expected to be this:
<properties>
<someProperty>some value to be replaced</properties>
</properties>
If yes then how to achieve it?