Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Sirius/Contributor Guide

< Sirius(Redirected from Sirius/Contributing)

Development Environment

Environment Configuration with Oomph

The steps "Development Environment" and "Getting the Sources" have been replaced by an Oomph configuration file. You need to install the Oomph installer.

  • On the Product page, choose "Eclipse IDE for Eclipse Committers" and your desired Product Version.

Product page

  • On the Projects page, select tick Sirius from the catalog.

Projects page

  • On the Variables page fill all the fiels.

Variables page

  • On the confirmation page just click Finish.

Confirmation page


Then, Oomph creates a new Eclipse installation, clones the Sirius git repository (if necessary), launches the new Eclipse install and terminates the process for the current workspace (add the repository in EGit, imports the Sirius projects in corresponding working sets, ...).

If you have trouble by using Oomph installer for Sirius, you can report the problem to the corresponging bugzilla (455965).

Configure environment manually

The standard environment to develop Sirius itself is currently:

  • Java 1.8. Mandatory since Eclipse Neon version.
  • Eclipse 4.7.3 (Oxygen.3a) SDK, with the following additional plug-ins:
    • EMF SDK 2.13.0, available from the Oxygen update-site: required to manage our meta-models and generate the corresponding code.
    • Eclipse CheckStyle Plug-in 7.6.0, available from https://dl.bintray.com/eclipse-cs/eclipse-cs/7.6.0/: required to make sure new code follows the CheckStyle-enforced rules.
    • Mylyn WikiText, available from the Oxygen update-site: required to re-generated the HTML documentation from the Textile sources.
    • EGit: required to get the Sirius sources (not strictly required actually, if you prefer to use the command-line exclusively).
  • Maven 3.3 or later, available from http://maven.apache.org/: required to build from the command-line (and make sure your changes will not break the build).
  • Optional: Git 1.8 or later, available from http://git-scm.com/downloads, if you need/want to use the command-line for commit/push/merge/rebase/etc.
  • Optional: Target Platform Definition DSL and Generator 2.0 or later, available from http://mbarbero.github.io/fr.obeo.releng.targetplatform/p2/latest/ (Note: on Kepler you also need to add http://download.eclipse.org/modeling/tmf/xtext/updates/releases/ to get Xtext 2.5 which is not available by default on Kepler). This tools is needed only if you need to change the Target Platform definition files (*.targetplatform and *.tpd) and re-generate the *.target files. In normal development you do not need this and can simply use the generated *.target themselves.

Of course you are free to use any additional tools you want to make your development experience more pleasant for you. However, do not commit anything which adds new requirements without getting approval from the development team.

Getting the Sources

The source code for Sirius is visible at https://git.eclipse.org/r/#/admin/projects/sirius/org.eclipse.sirius. Note that this is a web page, not a Git repository. Do not try to clone using this URL, use the link given in the Gerrit interface. To be able to push reviews on the gerrit, a hook used to add IDs to the commit must be installed. This can be done by clicking on the link "Clone with commit-msg hook" that create an command line allowing to clone the Sirius repository and install the hook.

A Team Project Set (*.psf) file which is normally kept up-to-date can be obtained from http://git.eclipse.org/c/sirius/org.eclipse.sirius.git/plain/releng/org.eclipse.sirius.settings/sirius.psf.

Once you have all the sources in your workspace:

  • Make sure the "Missing API Baseline" does not cause compilation errors: Window > Preferences > Plug-in Development > API Baselines : Set "Missing API Baseline" to "Warning" (or "Ignore").
  • Open one of the .target files from the org.eclipse.sirius.targets project in the target editor and (once it is loaded) set it as the current target.

Git Usage

Development is done on master, but all but the most trivial patches must first go through a Gerrit review. Feature branches are created for disruptive changes which may or may not be completely stabilized by the time of the next milestone or release.

Obviously, each contributor is free to do whatever he/she wants on his/her local clone(s), the rules above only apply to commits and branches pushed into the official repo at Eclipse.

Commit Messages Formatting

[bugid] Short description

Longer description if needed, explaining the reasons of the change and its
impact, not paraphrasing the patch. The description should use wrapped line.

Bug: bugid
Change-Id: I00000000000000000000
Signed-off-by: author name
  • Always mention the numeric bug id at the start of the first line (e.g. [432432]). For the few cases where a commit is not directly related to a bugzilla, use a tag like [build], [version], [cleanup]...
  • The first line should be short, this is not the place to give details.
  • The Bug: 432432 footer line is not strictly required, but Gerrit recognizes it and creates a direct hyperlink to the bugzilla if it is present, which is very convenient.
  • The Change-Id: footer line is mandatory for all changes which go through Gerrit (which should be the vast majority of commits).
  • The Signed-of-by: footer line is not mandatory but recommended.
  • The Cherry-picked-from: 421359 footer should be included if the commit is a backport from a cloned issue.

Gerrit configuration

You will need to configure your Sirius Git repository to be able to push your modifications on Gerrit, see:

See also

Sirius/Build

Back to the top