Versions Compared

Key

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

...

  1. File->Import
  2. Select General->Existing Projects into Workspace
  3. Enter "/home/joe/cxf/trunk" as the root directory
  4. Click "Finish"

Performing a release

For the most part, we now follow the same instructions that the maven team uses.
http://maven.apache.org/developers/release/releasing.html

Basically, setup your settings.xml file as they described for your pgp key. The deploy.altRepository should be set to something similar to:

Code Block

dkulp::default::scp://people.apache.org/home/dkulp/public_html/maven_staging

After that is setup, you should just need to run

Code Block

mvn release:prepare
mvn release:perform

That will tag the release, update the poms, etc... Then build it (off the tag) and deploy everything (including source jars and javadoc jars) to the deploy.altRepository location and gpg signs everything. Once there, call the vote(s) based on that.

After the vote passes, you'll need to "merge" that staging location to the main location. (I'm waiting for docs on the repository-tools plugin that handles this step)