Is there a simple way to rewrite a Maven property entry to a specific value
Since version 2.5
we can use set-property
(documentation):
mvn versions:set-property -Dproperty=your.property -DnewVersion=arbitrary_value
As documented, the set-property
goal does not perform any ‘sanity checks’ on the value you specify, so it should always work, but you should use with care.