...
- Code freeze. Ask on the dev forum who has outstanding work and synchronize on creating the release branch.
- Prepare/update Modeler and upload new version. See How to build Activiti Modeler from Signavio document.
Release day
Update the release notes
...
Then upload the distro/target/activiti-5.11.zip to http://ts.alfresco.com/share/page/site/activiti/documentlibrary#path=/Downloads&page=1
Upload the file to Amazon S3 (Through Ash/Panda/yourself)
Publish the maven artifacts
...
the activiti folder, right-clicking and selecting 'rebuild Metadata'.
Publish the designer integration jar
To publish the designer integration jar, following command should be used
| Code Block |
|---|
mvn deploy:deploy-file -Dfile=relative/path/to/org.activiti.designer.integration_0.7.0.jar -DgroupId=org.activiti.designer -DartifactId=org.activiti.designer.integration -Dversion=0.7.0 -DgeneratePom=true -DrepositoryId=alfresco.release.repo -Durl=http://maven.alfresco.com/nexus/content/repositories/activiti/ -Dpackaging=jar
|
This requires you to have a ${user.home}/.m2/settings.xml specifying your credentials to upload release artifacts
| Code Block |
|---|
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>alfresco.release.repo</id>
<username>yourusername</username>
<password>******</password>
</server>
</servers>
</settings>
|
Update the website
- Publish the docs: in directory distro
...
