I am trying do the following:
find . -iname pom.xml
| xargs sed -i
"s/<version>${project.version}</version>/<version>0.9.1-SNAPSHOT</version>/g"
But it doesn’t work. What all I need to escape here?
I tried multiple combinations like escaping / in version and $.
Escape
$and.. Use different delimiter(;).