This document describes the steps that should be followed during every release of the Errai project. When making a release, please be careful to follow these steps in order. If something doesn't make sense, if you perform steps not listed here, or if after the release, it was discovered that something was forgotten, please update these notes to reflect the correct procedure.
The hope is that most or all of these steps will be automated. But a necessary first step is to discover everything that needs to be done in order to make a release successful.
When the Maven Release Plugin goes awry, it's a tedious process to back out its automated git tags and commits. We prefer to follow the steps manually, committing after each step as we go.
-
Run the test suite. Ensure all tests pass. (Can skip this if last CI build is green.)
mvn -Pintegration-test clean install
-
Update reference guide with latest content and check in generated docbook.
cd errai-docs mvn clean package #this needs a profile in ~/.m2/settings.xml that references the JBoss public maven repo git add src
-
Ask Maven to update the version number in all the pom.xml files:
cd {errai_root_dir} ./updateVersions.sh a.b.c-SNAPSHOT a.b.c.Final
Afterward, verify that all subprojects reference the new parent pom's version:
find . -name pom.xml | xargs grep a.b.c | grep SNAP
(if any are out of sync with the parent version, Maven will not have updated them)
-
Build and package the release. These are the bits that will be uploaded to nexus. Expect this to take about 4 minutes, depending on network speed.
mvn clean deploy -Dgwt.compiler.skip=true -DaltDeploymentRepository=jboss-snapshots-repository::default::https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/
-
Upload the docs
cd dist scripts/upload_docs.sh {version}
-
NOTE: In the case it does not work, repeat Step 2 only before retrying.
-
NOTE2: Upload both for {version} and
latest
. Remember to pass the--skip-mkdirs
param when uploadinglatest
. i.e.scripts/upload_docs.sh latest --skip-mkdirs
-
NOTE3: If you get a "Permission denied" message, make sure that you have your keys on the
~/.ssh
directory and that you've ranssh-add -k ${path-to-key}
too.i.e.
ssh-add -k /home/{user}/.ssh/errai/id_rsa
-
-
Tag and push the release to GitHub
git commit -a -m "Updated to new version a.b.c.Final" git tag -a a.b.c.Final -m "tagged a.b.c.Final"
-
Reset all versions to
a.b+1.c-SNAPSHOT
and commitcd {errai_root_dir} ./updateVersions.sh a.b.c.Final a.b+1.c-SNAPSHOT git commit -a -m "Updated to new development version a.b+1.c-SNAPSHOT"
-
Push the changes:
git push upstream {branch} git push upstream a.b.c.Final
-
Browse to nexus (https://repository.jboss.org/nexus/index.html)
- Find the corresponding staging repository (Sort by repository Update)
- Select it and click Close (takes about 1 minute)
- Select it again and click Release
- After that, it will take about 1 day for the artifacts to show up in Maven Central. Browse to (https://repository.jboss.org/nexus/content/groups/public/org/jboss/errai/) and verify that the artifacts are present.
-
Release the new version on JIRA.
-
Update the version number of
errai-tutorial
's pom.xml: https://github.com/errai/errai-tutorial/blob/main/pom.xml -
Update the website with links to the new version (https://github.com/errai/errai.github.com)
-
(Optional) Publish a release blog entry at http://errai-blog.blogspot.com/
-
(Optional) Tweet about the release!
=== You're done! Congrats! You deserve beer! ===
-
cd errai-cdi/errai-wildfly-dist
-
Make sure that you have the right permissions on Nexus then run:
mvn clean deploy
- After that, execute only step 9. of the normal Release Process.