This release guide is based on the General guide for releasing Maven-based projects at Apache, so be sure to check it out before continuing and meet all prerequisites.
Prerequisites
To prepare or perform a release you MUST BE at least an Apache Camel committer.
~/.m2/settings.xmlBefore 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 writable. If you do not do this, other developers will not able to overwrite your SNAPSHOT releases with newer versions. The settings follow the guidelines used by the Maven project. Please pay particular attention to the password encryption recommendations.
<settings>
...
<servers>
<!-- Per http://maven.apache.org/developers/committer-settings.html -->
<!-- To publish a snapshot of some part of Maven -->
<server>
<id>apache.snapshots.https</id>
<username> <!-- YOUR APACHE LDAP USERNAME --> </username>
<password> <!-- YOUR APACHE LDAP PASSWORD --> </password>
</server>
<!-- To publish a website of some part of Maven -->
<server>
<id>apache.website</id>
<username> <!-- YOUR APACHE LDAP USERNAME --> </username>
<filePermissions>664</filePermissions>
<directoryPermissions>775</directoryPermissions>
</server>
<!-- To stage a release of some part of Maven -->
<server>
<id>apache.releases.https</id>
<username> <!-- YOUR APACHE LDAP USERNAME --> </username>
<password> <!-- YOUR APACHE LDAP PASSWORD --> </password>
</server>
<!-- To stage a website of some part of Maven -->
<server>
<id>stagingSite</id> <!-- must match hard-coded repository identifier in site:stage-deploy -->
<username> <!-- YOUR APACHE LDAP USERNAME --> </username>
<filePermissions>664</filePermissions>
<directoryPermissions>775</directoryPermissions>
</server>
</servers>
...
<profiles>
<profile>
<id>apache-release</id>
<properties>
<gpg.useagent>false</gpg.useagent>
<gpg.passphrase><!-- YOUR GPG PASSPHRASE --></gpg.passphrase>
<test>false</test>
</properties>
</profile>
</profiles>
...
</settings>
|
It is also essential that you configure your umask to 2 on people.apache.org for non-interactive login. You can do that by including the snipped below in your .profile.
umask 002 |
The release plugin will prompt for a release version, tag and next release version. Use a three digit release version of the form: 2.x.x and for the tag use a string of the form: camel-2.x.x. The next version string should use the two digit from: 2.x-SNAPSHOT as this can be consistent for future SNAPSHOT releases.
Grab the latest source from Git and checkout the target branch to build from
git clone https://git-wip-us.apache.org/repos/asf/camel.git cd camel git checkout BRANCH_NAME # e.g. BRANCH_NAME = camel-2.16.x |
Verify headers with rat
mvn -e org.apache.rat:apache-rat-plugin:check grep -e ' !?????' target/rat.txt # will show any files without licenses |
The grep command will return a list of files that don't have correct license headers. If nothing is returned, you can proceed with the next step. Otherwise fix the license header in all listed files and invoke both commands again until no files are returned.
Because of MRELEASE-812, you should use the following setting:
|
Do a release dry run to check for problems
mvn release:prepare -DdryRun=true -Prelease,apache-release |
Check that you are happy with the results. The poms for the proposed tags will be in pom.xml.tag. Check also the generated signature files:
cmueller$ gpg camel-core/target/camel-core-2.7.5-SNAPSHOT.jar.asc gpg: Signature made Tue Jan 10 20:50:27 2012 CET using RSA key ID 2A239C2C gpg: Good signature from "Christian Mueller (CODE SIGNING KEY) <cmueller@apache.org>" |
Prepare the release
When you like the results, clean up:
mvn release:clean -Prelease,apache-release |
NOTE: If your git doesn't remember the username and password, you need pass it to the mvn plugin, otherwise the release plugin will wait forever.
mvn release:prepare -Dusername=USERNAME -Dpassword=PASSWORD -Prelease,apache-release |
This will create the tag in svn and leave various stuff around locally to direct the perform phase.
Note: If you're located in Europe then release:prepare may fail with 'Unable to tag SCM' and 'svn: No such revision X'. Wait 10 seconds and run
again. |
Perform the release to the staging repo
mvn release:perform -Prelease,apache-release |
See the screenshot below that shows the state of the staging repository at this stage.Login to https://repository.apache.org using your Apache LDAP credentials. Click on "Staging Repositories". Then select "org.apache.camel-xxx" in the list of repositories, where xxx represents your username and ip. Click "Close" on the tool bar above. This will close the repository from future deployments and make it available for others to view. If you are staging multiple releases together, skip this step until you have staged everything. Enter the name and version of the artifact being released in the "Description" field and then click "Close". This will make it easier to identify it later.

If you click on your repository, a tree view will appear below. You can then browse the contents to ensure the artifacts are as you expect them. Pay particular attention to the existence of *.asc (signature) files. If the you don't like the content of the repository, right click your repository and choose "Drop". You can then rollback your release and repeat the process.
Note the repository URL, you will need this in your vote email.
When folks need to test out a release candidate, the jars will not have been uploaded to the central Maven repo. This means that the example programs which use Maven will not automatically work and you need to follow the Testing a release candidate guidelines.
Afterwards send out the VOTE for this release candidate to the dev@ mailing list.
If the VOTE pass,
Copy the newly deployed distribution to Apache website:
cd ${CAMEL_ROOT_DIR}/etc/scripts
./release-distro.sh <Camel version>
|
The script will download all distribution artifacts using wget and eventually show the following message:
Distro artifacts prepared for upload, but not yet uploaded. Verify distro then complete upload! cd /tmp/camel-release/dist/x.y.z/ svn status svn ci -m "Apache Camel x.y.z released artifacts." Remove previous distro on same branch if necessary DONE |
Finish this step by following the provided command sequence using svn after checking the artifacts.
Remove the old release by using svn:
svn rm https://dist.apache.org/repos/dist/release/camel/apache-camel/OLD_CAMEL_VERSION -m "Removed the old release" |
Upload the newly deployed schema and the manual to Apache:
cd ${CAMEL_ROOT_DIR}/etc/scripts
./release-website.sh <Camel version>
|
The script will download the website release artifacts using wget. Once all artifacts are downloaded, the following message is displayed:
NOTE: Manual steps required! Check the schemas and manual files for new artifacts,
add them to the repository as required and commit your changes. This step
is intentionally not automated at this point to avoid errors.
cd /tmp/camel-release/websites/production/camel/x.y.z/schema/
svn status
svn add <schema-x.y.z-qualifier>.xsd
svn ci -m "Uploading released schemas for camel-x.y.z"
cd /tmp/camel-release/websites/production/camel/x.y.z/manual/
svn status
svn add camel-manual-x.y.z.html
svn ci -m "Uploading released manuals for camel-x.y.z" |
Finish this step by following the provided command sequence using svn after checking the artifacts.
Upload the javadocs to Apache, you need to checkout the files from "https://svn.apache.org/repos/infra/websites/production/camel/content/maven/"
To be able to perform a checkout on people.apache.org from svn.apache.org, you have to trust the server certificate:
|
spring.schemas file located in src/main/resources/META-INF directory of the following components: