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

OSBP getting started

Revision as of 10:33, 6 April 2018 by Ramollik.compex-commerce.com (Talk | contribs) (Installation of the OSBP Software Factory)

Installation of the Software Factory

Before you start

Java Version

To be able to use the OSBP Software Factory, you need to have the right Java version installed.

On 64-bit Windows systems, this is Java JDK 8 64bit Java SE Downloads. If you have Java installed, there is generally a Java icon on the control panel which will enable you to find out the current version.

Eclipse Version

To be able to use the OSBP Software Factory, you need to have the correct Eclipse Neon version installed. You can use Eclipse Neon 3 Java Developers. Download and extract it to a folder location of your choosing. On Windows, we recommend C:\. This results in the installation folder C:\eclipse. This will be the assumed Eclipse installation folder for the rest of this document.

To be able to launch Eclipse easily, create a shortcut on the computer's desktop to the program C:\eclipse\eclipse.exe. Be sure to add the parameter -data /path/to/your/workspace to the shortcut's invocation of Eclipse in order to start in the correct workspace in the future. Otherwise, you will be prompted to specify a workspace each time you start Eclipse.

Make the following change to the eclipse.ini file found in the C:\eclipse folder:

-Xmx4096m

This line allocates extra memory for Eclipse to use.

A resulting eclipse.ini file for a Windows installation might look like this:

<existing lines above>
-Xms128m
-Xmx4096m

OSBP P2 Repository

Installation of the OSBP Software Factory

There are two ways of installing the OSBP Software Factory. The first one ist the standard installation of an Eclipse IDE which is decribed below.
As an alternative, there is a Yatta profile you can use to do the installation of Eclipse, the OSBP Software Factory and adjust the settings. What needs to be done is to set the Target Platform.

The following section describes the standard installation procedure.

  1. Start the new Eclipse installation and select or define a workspace. It is important that each Eclipse installation is assigned to its own workspace.

    Workspace1.png

  2. Go to the menu bar and select Help -> Install New Software....

    NeonOsbpInstall01.png

  3. Enter
    http://download.eclipse.org/osbp/neon/latest
    in the field labeled Work with:. Then, press Enter to make Eclipse load the content of the repository.

    OSbpInstall05.PNG

  4. Expand the OSBP Software Factory group, select the OSBP Software Factory and click on Next.

    NeonOsbpInstall02.png

  5. In the installation dialog, confirm the software to be installed by clicking on Next.

    NeonOsbpInstall03.png

  6. Accept the terms of the license aggreement after reading them carefully, and then confirm the dialog by clicking on Finish.

    NeonOsbpInstall04.png

  7. The installation will now begin. This may take a while, depending on your Internet connection speed and your hardware.

    NeonOsbpInstall05.png

  8. After the software has been downloaded, confirm the "Security Warning" dialog by clicking on OK.

    InstallUnsignedCodeWarning.png

  9. You will then be prompted to restart Eclipse. Please do so.

    NeonOsbpInstall06.png

  10. After the restart of Eclipse, you might be asked to allow Eclipse to communicate to various networks. Please allow at least the private networks.

    InstallFirewall.PNG

  11. The next question is about JBoss Tools usage statistics. You can give your preferred answer.

    InstallJBossQuestion.PNG

Set the Target Platform for the OSBP Software Factory

  1. Check if the workspace you are using is the one you selected above when first opening Eclipse. If not, open the right one.

  2. Set the target platform here: Menu -> Window -> Preferences. Then go to Plug-in Development -> Target Platform.
    You can use "Target" as the filter text.
  3. Click on Add... to add a new target definition.

    NeonOsbpInstall07.png

  4. Select "Default: ..." and click on Next.

    NeonOsbpInstall08.png

  5. Click on Add... to add content, select Software Site and click on Next.

    NeonOsbpInstall09.png

  6. For the Software Site, use the URL from above.

  7. Expand the group OSBP Softwarefactory, select OSBP Softwarefactory Targetplatform (DON'T INSTALL...),
    uncheck the Include required software checkbox and click on Finish.

    NeonOsbpInstall10.png

  8. Do not forget to activate your newly created target definition!

    NeonOsbpInstall12.png

  9. Restart Eclipse. You can use Menu -> File -> Restart to do so.

Setting preferences in Eclipse

Git settings

In case you're using git, be sure to uncheck the automatic git-ignore for derived files, otherwise generated files will not be checked in:
Git-Preferences.png

DS Annotations

  1. It is neccessary to activate the generation of descriptors based on DS Annotations.
  2. Go to Window -> Preferences in your Eclipse IDE, enter ds in the filter field and then click on DS Annotations.
  3. Activate the Generate descriptors from annotated sources checkbox.

    NeonOsbpInstall13.png

JDK Settings

Please check the JDK settings in case you have multiple Java versions installed on your machine.

  1. Go to Window -> Preferences in your Eclipse IDE, enter java in the filter field, click on Installed JREs and then click on Search....

    NeonOsbpInstall14.png

  2. Locate your JDK 1.8 (on Windows it's usually under C:\Program Files\Java\...) and click OK.

    NeonOsbpInstall15.png

  3. Select the newly added JDK and click on Apply, then on OK.

    NeonOsbpInstall16.png

Back to the top