简体   繁体   中英

How to replace a string use regular expression in maven?

I tried to replace a string in a file when build from maven.

I did this:

<replace file="..." token="AssemblyVersion(&#34;${[0-9.]+}&#34;)" 
     value="AssemblyVersion(&#34;${major}.${build}.${scmRevision}&#34;)"/>

The maven program just doesn't work on regular expression.

Try this plugin , seems to be doing exactly what you need. This answer can be helpful as well.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM