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 svn+ssh:// https://svn.apache.org/repos/asf/incubator/activemq/camel/trunk
    cd activemq
    
  2. Change the version number: (we so need to make this step automatic) :

    project pom.xml

    etc/project.xml

    the WireFormat version (if needed.) the value of <camel-version> property in the root pom.xml too

  1. Let Maven build, test, package, and deploy the binaries
    Code Block
    maven clean default multiproject:deploy dist:deploy
    
  2. 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"
    
  3. Check that the binaries look fine.

...