When a release is ready to go, release manager (RM) puts forward a release plan as per standard Apache process, including dates. This gets VOTEd on by the committers. During this period the trunk is still the only relevant source base.
As soon as a release is approved (or even before), RM should add the new version into JIRA as a target.
At the point where we would normally do the “code freeze” for a release, the RM cuts a branch named for the release. This branch is where the release candidates and releases will happen.
Ideally a release branch is only around for a week or maybe two before the release happens.
The only things that should EVER get checked into the release branch are - 1) bug fixes targeted at the release, 2) release-specific updates (documentation, SNAPSHOT removal, etc). In particular new functionality does not go here unless it is a solution to a JIRA report targeted at the release.
Normal development continues on the trunk.
The trunk should always be “cutting edge” and as such should usually be pointing at SNAPSHOT versions of all dependencies. This allows for continuous integration with our partner projects.
Soon after a release branch is cut, the RM is responsible for removing ALL dependencies on SNAPSHOT versions and replacing them with officially released versions. This change happens only on the release branch.
The RM goes through JIRA issues and sets “fix for” to point to both “NIGHTLY” and the new branched release number for the fixes that are targeted for the release after the branch is cut.
In general, the assignee/coder fixes JIRA issues or makes other changes on the trunk. If the JIRA issue is targeted at the release, or upon coder's discretion, they then merge the fix over to the release branch.
This way the trunk is ALWAYS up-to-date, and we don't have to worry about losing fixes that have only been made on the release branch.
When the assignee resolves an issue, they confirm it's been fixed in both branches, if appropriate.
If bug fixes are needed later for a release which has long since happened (to fix user issues, etc), those fixes generally should also happen on the trunk first assuming the problem still exists on the trunk.
There are only two cases where we would ever check anything into the branch without first checking it into the trunk. 1) Release specific items (release number references, release notes, removal of SNAPSHOTs), and 2) if the trunk has moved on in some incompatible way.
Verify that the code meets the basic requirements for being releasable:
Check that the set of legal (legal/*.LICENSE
) files corresponds to the set of third party
JARs included in the binary distribution.
Check that the apache-release
profile works correctly and produces the required distributions.
The profile can be executed as follows:
mvn clean install -Papache-release
Check that the source distribution is buildable.
Check that the source tree is buildable with an empty local Maven repository.
If any problems are detected, they should be fixed on the trunk (except for issues specific to the release branch) and then merged to the release branch.
Next update the release note found under src/site/markdown/release-notes
. To avoid extra work for
the RM doing the next major release, these changes should be done on the trunk first and then merged
to the release branch.
The following things are required to perform the actual release:
A PGP key that conforms to the requirements for Apache release signing.
To make the release process easier, the passphrase for the code signing key should
be configured in ${user.home}/.m2/settings.xml
:
<settings>
...
<profiles>
<profile>
<id>apache-release</id>
<properties>
<gpg.passphrase><!-- key passphrase --></gpg.passphrase>
</properties>
</profile>
</profiles>
...
</settings>
The release process uses a Nexus staging repository. Every committer should have access to the corresponding
staging profile in Nexus. To validate this, login to repository.apache.org
and check that you can see the org.apache.axis2
staging profile. The credentials used to deploy to Nexus
should be added to settings.xml
:
<servers>
...
<server>
<id>apache.releases.https</id>
<username><!-- ASF username --></username>
<password><!-- ASF LDAP password --></password>
</server>
...
</servers>
In order to prepare the release artifacts for vote, execute the following steps:
Start the release process using the following command:
mvn release:prepare
When asked for a tag name, accept the default value (in the following format: vX.Y.Z
).
The execution of the release:prepare
goal may occasionally fail because svn.apache.org
resolves to one of the geolocated SVN mirrors and there is a propagation delay between
the master and these mirrors. If this happens,
wait for a minute (so that the mirrors can catch up with the master) and simply rerun the command.
It will continue where the error occurred.
Perform the release using the following command:
mvn release:perform
Login to Nexus and close the staging repository. For more details about this step, see here.
Execute the target/checkout/etc/dist.py
script to upload the distributions.
Create a staging area for the Maven site:
git clone https://gitbox.apache.org/repos/asf/axis-site.git
cd axis-site
cp -r axis2/java/core/ axis2/java/core-staging
git add axis2/java/core-staging
git commit -am "core-staging"
git push
Change to the target/checkout
directory and prepare the site using the following commands:
mvn site-deploy
mvn scm-publish:publish-scm -Dscmpublish.skipCheckin=true
Now go to the target/scmpublish-checkout
directory (relative to target/checkout
) and check that there
are no unexpected changes to the site. Then commit the changes.
Start the release vote by sending a mail to java-dev@axis.apache.org
.
The mail should mention the following things:
If the vote passes, execute the following steps:
Promote the artifacts in the staging repository. See here for detailed instructions for this step.
Publish the distributions:
svn mv https://dist.apache.org/repos/dist/dev/axis/axis2/java/core/x.y.z \
https://dist.apache.org/repos/dist/release/axis/axis2/java/core/
Publish the site:
git clone https://gitbox.apache.org/repos/asf/axis-site.git
git rm -r core
git mv core-staging core
git commit -am "Axis2 X.Y.Z site"
git push
It may take several hours before everything has been synchronized. Before proceeding, check that
Once everything is in place, send announcements to java-user@axis.apache.org
(with copy to
java-dev@axis.apache.org
) and announce@apache.org
. Since the two lists have different conventions,
audiences and moderation policies, it is recommended to send the announcement separately to the two lists.
Note that mail to announce@apache.org
must be sent from an apache.org
address and will
always be moderated. The announcement sent to announce@apache.org
also should include a general description
of Axis2, because not everybody subscribed to that list knows about the project.
Update the DOAP file (etc/doap_Axis2.rdf
) and add a new entry for the release.
Update the status of the release version in JIRA.
Remove old (archived) releases from https://dist.apache.org/repos/dist/release/axis/axis2/java/core/.
Create an empty release note for the next release under src/site/markdown/release-notes
.