# mwe_1 **Repository Path**: mirrors_eclipse/mwe_1 ## Basic Information - **Project Name**: mwe_1 - **Description**: Modeling Workflow Engine project repository (mwe) - **Primary Language**: Unknown - **License**: EPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-10-14 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Modeling Workflow Engine (MWE) See the [MWE2 documentation](documentation/mwe2.md) for more details. ## Release Process MWE releases are performed via the master branch on [Jenkins](https://ci.eclipse.org/mwe/job/mwe2/job/master/). The job is parameterized so the release type ('Integration', 'Beta', 'M0', 'M1', 'M2', 'M3', 'M4', 'M5', 'RC1', 'RC2', 'GA') can be configured upon starting the job. ### Nightly Integration Releases The master branch is configured to perform a nightly integration build. If a nightly build fails, running the build manually choosing the 'Integration' release type should return the same result and further actions should not be necessary. ### Stable Releases Performing a stable release has a few manual steps that are documented here: 1. Start the master branch job, selecting the release type. When the job is finished, artifacts should have been uploaded to the [Sonatype Nexus](https://oss.sonatype.org) and the Eclipse download storage. 1. Add a git tag (`v$MAJOR.$MINOR.$SERVICE`) to mark the commit being released. 1. Check Jenkins artifacts, if Maven artifacts have the correct versions (without qualifiers!). 1. Check Jenkins artifacts, if p2 artifacts have the correct version (with qualifiers!). 1. Check if the [MWE download site](https://download.eclipse.org/modeling/emft/mwe/downloads/drops/) now provides the correct artifacts. 1. Check if the [MWE update site](https://download.eclipse.org/modeling/emft/mwe/updates/milestones/) now provides the correct artifacts. 1. Check if Sonatype Nexus provides the correct artifacts. If so, close the staging repository and release it afterwards. 1. Create a SimRel contribution by replacing the update site in [emft-mwe.aggrcon](https://git.eclipse.org/c/simrel/org.eclipse.simrel.build.git/tree/emft-mwe.aggrcon) with the newly released version. 1. If the release was of the type 'GA', run the `./set_version.sh` script and provide a PR to prepare the next release cycle. ### Build Locally `mvn -f maven/org.eclipse.emf.mwe2.parent/pom.xml -Dtycho.localArtifacts=ignore -Dmaven.repo.local=.m2/repository clean install` Build with nightly dependencies (EMF etc.) `mvn -f maven/org.eclipse.emf.mwe2.parent/pom.xml -Dtycho.localArtifacts=ignore -Dmaven.repo.local=.m2/repository -Dtarget-platform=org.eclipse.emf.mwe2.target.nightly clean install`