Versions Compared

Key

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

...

  1. Let Maven build, test, package, and deploy the binaries
    Code Block
    mvn clean source:jar deploy -Drelease-repo-url=file:$HOME/$PROJ-$PROJVER/maven2 -Dm1-repo-url=file:$HOME/$PROJ-$PROJVER/maven -P release
    
  1. Build the camel site and javadoc (you will need graphviz installed and the dot program in the path)
    Code Block
    
    mvn -Dsite-repo-url=file:$HOME/$PROJ-$PROJVER/site site:site
    mvn -Dsite-repo-url=file:$HOME/$PROJ-$PROJVER/site site:deploy
    
  1. Tag the release using your local workspace to a new CAMEL_X_Y label
    Code Block
    svn copy ../camel https://svn.apache.org/repos/asf/activemq/camel/tags/camel-x.y.z -m "Camel x.y.z Release"
    

...