Versions Compared

Key

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

...

  1. Grab the latest source from SVN
    Code Block
    svn co https://svn.apache.org/repos/asf/activemq/camel/trunk camel
    cd camel
    
  2. Change the version number : (we so need to make this step automatic) : in:

    pom.xml - in the project root and all subprojects

    the value of <camel-version> property in the root pom.xml too

    The command below will do the trick (replace for the appropriate version); use x.y-RCn for a release candidate
    Code Block
    
    find . -name pom.xml | grep -v .svn | xargs sed -i -e s/x.y-SNAPSHOT/x.y/g
    
  3. Let Maven build, test, package, and deploy the binaries
    Code Block
    maven clean default multiproject:deploy dist:deploy
    
  4. Tag the release using your local workspace to a new CAMEL_X_Y label
    Code Block
    svn mkdir svn+ssh://https://svn.apache.org/repos/asf/incubator/activemq/camel/tags/CAMEL_X_Y -m "Camel X.Y Release"
    svn copy ../activemq svn+ssh://https://svn.apache.org/repos/asf/incubator/activemq/camel/tags/CAMEL_X_Y/activemq -m "Camel X.Y Release"
    
  5. Check that the binaries look fine.

...

Assuming that the release candidate is deployed to *http://people.apache.org/~chirino/apache-camel-1.2.0-RC1/maven2Image Removed

Announcing the Camel Release

...