Versions Compared

Key

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

...

Before you deploy anything to the maven repository using Maven 2, you should configure your ~/.m2/settings.xml file
so that the file permissions of the deployed artifacts are group writeablewritable. If you do not do this, other developers will not able to overwrite your SNAPSHOT releases with newer versions.

...

  • 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-Prelease,enable-schemagen
    
  • 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"
    

...