Versions Compared

Key

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

...

  • pom.xml - in the project root and all sub-projects
  • the value of <camel-version> property in the root pom.xml
  • Note: The command below will do the trick on Linux (replace for the appropriate version); use x.y.z-RCn for a release candidate.
    Code Block
    
    find . -name pom.xml | grep -v .svn | xargs sed -i -e s/x.y-SNAPSHOT/$PROJVER/g
    
    If you do this on MacOSX, you will need to:
    Code Block
    find . -name pom.xml | grep -v .svn | xargs sed -i "" -e s/x.y-SNAPSHOT/$PROJVER/g
    

...