On Sep 24, 2010, at 2:53 AM, Jean-Louis MONTEIRO wrote:
> BTW, i don't actually know the steps, nor the work involved.
I always forget myself. Here are some of the things I forgot since last time:
1. Ant build.xml files are ignored by mvn release:prepare. Fixed this with
the following:
$ find . -name 'build.xml' -exec perl -i -pe "s/(3.1.3)-SNAPSHOT/$1/g" {} \;
$ find . -name 'build.xml' -exec perl -i -pe "s/(5.0-3)-SNAPSHOT/$1/g" {} \;
2. Just to make sure nothing is missed and still has -SNAPSHOT in it, I used
the 'ack' tool to search:
$ ack -- '-SNAPSHOT'
More coming...