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

Papyrus-RT/Developer/Developer Guide/DevEnv

Introduction

This tutorial will show you how to setup the development environment for Papyrus for Real Time using the Oomph-based Eclipse Installer.

Note.png
Java 8
You will need at least Java 8 installed


Note.png
Operating System
The instructions in this tutorial are illustrated using screen captures from multiple operating systems. Steps and images may differ slightly if the installation is done on a different operating system (both Windows and Mac OS are supported for developing models). Some of these differences have been indicated when known, but some may also be missing.


Note.png
Windows
We have had reports that these instructions fail on the next step on some Windows installations and we are investigating. If that is the case for you, You can first try using Java 8 and, if it still does not work, please follow the instructions on the manual installation tutorial (https://wiki.eclipse.org/Papyrus-RT/User_Guide/Installation>.


Install the Eclipse Installer

First, you will need to download and install the Eclipse Installer.

1. Go to http://wiki.eclipse.org/Eclipse_Installer

2. Download the "Eclipse Installer" package for your operating system

3. Decompress the downloaded archive to a folder such as "~/Apps/EclipseInstaller/" (folder name and location will vary depending on operating system)

PapyrusRT-O-EclipseInstaller.png

Install the development environment for Papyrus for Real Time

Now that the installer is available, you can install the software.


Start the Eclipse Installer

4. Open the eclipse-installer folder and double-click on the eclipse-inst application.

PapyrusRT-O-StartSclipseInstaller.png

You should see this:

Papyrus-rt-dev-env-install-1.png

Add Papyrus-RT to the list of projects

You have now started the Eclipse Installer.

However, the Papyrus-RT developer setup project is not available in the list of projects presented to you. You will have to manually add it to the list.

5. Click on the icon at the top right.

Papyrus-rt-dev-env-install-2.png

6. Select "Advanced Mode..."

This has for effect to restart the Eclipse Installer in the "Advanced Mode", which will allow you to specify an external setup file.

Papyrus-rt-dev-env-install-3.png

Set up the Papyrus-RT configuration

You can now set up the Papyrus-RT configuration that will define the how to install the product.

7. Select Eclipse.org from the list.

8. Click on the [>] left of Eclipse.org to unfold.

9. Select Eclipse IDE for Eclipse Committers. In the bottom, under Product Version select Latest (Neon). Under Java VM choose the appropriate Java 1.8 JVM (you may need to navigate through the file system to find the one you need).

Papyrus-rt-dev-env-install-4.png

10. Click [Next]

Papyrus-rt-dev-env-install-5.png

11. Drag and drop the setup file (File:Papyrus-rt-developer.setup) onto the <User> folder.


Install the development components

12. Unfold Papyrus-RT and check all the boxes on the left.

13. In the bottom of the dialog make sure that the Stream field in each entry is set to master (Neon/1.0) (You may need to click on each and select the appropriate stream).

Papyrus-rt-dev-env-install-6.png

14. Click [Next].

Papyrus-rt-dev-env-install-7.png

15. Choose your installation and workspace folders and enter your Eclipse password. You may customize these values and more by checking on Show all variables at the bottom.

16. Click [Next].

Papyrus-rt-dev-env-install-8.png

This shows the first set of tasks of the installation. The second set will be executed when Eclipse launches automatically.

17. Click [Finish].

Papyrus-rt-dev-env-install-9.png

18. Click [Finish]. Eclipse will relaunch automatically.

Papyrus-rt-dev-env-install-10.png

19. On the bottom right it says Executing startup tasks. You can leave it alone, but it will take a few minutes to complete. If you'd like to see the progress, you can click on the icon to the left of this message (two circling arrows)

Papyrus-rt-dev-env-install-11.png

When it finishes it will look like this:

Papyrus-rt-dev-env-install-12.png

20. When asked for Gerrit Code Review Repository Authentication enter your Eclipse user ID and password.

Papyrus-rt-dev-env-install-13.png

21. During setup, a few dialogs like the following will pop up:

Papyrus-rt-dev-env-install-14.png

These will setup and synchronize the various MyLyn queries for Bugzilla and Gerrit.

22. Once it's finished you can click [Finish] to close the setup dialog and click on Workbench in the Eclipse Welcome page. You should see something like this:

Papyrus-rt-dev-env-install-15.png

23. If the Package Explorer shows individual plugin projects instead of Working sets as shown above, you can choose to show them by clicking on the down arrow shown at the top-right of the Package Explorer view, selecting Top Level Elements and then Working Sets.

Papyrus-rt-dev-env-install-16.png

Generate code for EMF projects

At this point you will likely have errors shown in several projects. For each of the following projects (found under the Papyrus XtUML-RT working set), perform the steps below:

  • org.eclipse.papyrusrt.xtumlrt.common.model
  • org.eclipse.papyrusrt.xtumlrt.statemach.model
  • org.eclipse.papyrusrt.xtumlrt.statemach.ext.model
  • org.eclipse.papyrusrt.xtumlrt.umlrt.model

Steps:

  1. Unfold the project
  2. Unfold the model folder
  3. Open the 'XXX'.genmodel file (by double-clicking it), where 'XXX' is the name of the model.
  4. In the opened EMF editor, right-click the root element (named 'XXX')
  5. Select Generate Model Code
Papyrus-rt-dev-env-install-17.png
  1. Do the same for each of the projects mentioned above.

Generate code for the Xtext project

  1. Under the Papyrus XtUML-RT working set, locate the org.eclipse.papyrusrt.xtumlrt.xtext project
  2. Unfold the project
  3. Unfold the src folder
  4. Unfold the org.eclipse.papyrusrt.xtumlrt.xtext folder
  5. Right-click on the Tumlrt.xtext file
  6. Select Run As
  7. Select Generate Xtext Artifacts
Papyrus-rt-dev-env-install-18.png

You may still have a couple of errors related to some missing folders. To get rid of these,

  1. Go to the org.eclipse.papyrusrt.xtumlrt.xtext.ide project
  2. Right-click on the project
  3. Select New
  4. Select Folder
  5. In the resulting dialog, set the name of the new folder to src
  6. Repeat, creating the folders src-gen and xtend-gen

Back to the top