Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

7. Update version to your release version in all pom.xml files (.pom.xml, */pom.xml and *//pom.xml). You should be changing the version only in <parent> tag (with exception of root pom.xml file that obviously do not have a parent).

simple trick to get all the pom.xmls changed 

Code Block
grep 2.0.0-SNAPSHOT * -RF | grep pom.xml

8. Check your changes by running package build

...