I need to change a property value in my pom.xml. I checked many approaches, but I think that they don't resolve my problem. E.g. I cannot use the maven-versions-plugin because the property value is not a version string.
My pom.xml:
<properties>
<myProp>myValue</myProp>
</properties>
I want change value of myProp permanently in the pom.xml via the command line. Overriding the property at runtime with -D
is not enough for me.
How can I do that?