Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

OSEE/Workspace Setup

< OSEE
Revision as of 19:46, 19 August 2009 by Unnamed Poltroon (Talk) (Downloading and Configuring Eclipse)

This guide describes how to set up an Eclipse workspace to develop OSEE.

Downloading and Configuring Eclipse

Install Eclipse

Download and install the Eclipse Classic Download available at the bottom of this page.

Install Plugins

Eclipse has a number of dependencies on third-party plugins. Some of these can be installed in an automatic fashion through Eclipse, while others have to be installed manually.

Eclipse Update Sites

Open the Install utility (Help > Install New Software...).

Manually Installed Plugins

These plugins must manually be installed to the Eclipse folder or the Eclipse plugin folder.

  • Install BIRT:
    • From http://download.eclipse.org/birt/downloads/
    • Click the yellow framework button to download the BIRT report Framework
    • Extract the zip file and use local install from the Update Manager
    • Select the feature "BIRT Chart Framework"
  • Download org.eclipse.nebula.widgets.calendarcombo_1.0.0.jar from http://www.eclipse.org/nebula/downloads.php
    • Manually install org.eclipse.nebula.widgets.calendarcombo into your <workspace-path>/sandbox/plugins folder
  • Manually install derby.driver plugin project into your <workspace-path>/sandbox/plugins folder

Windows-specific Configuration

  • Install the CVS executable: http://ftp.gnu.org/non-gnu/cvs/binary/stable/x86-woe/
  • Get Subversion Binaries: http://subversion.tigris.org/getting.html
  • Put SVN and CVS in the path:
    • On Windows:
      • Go to Control Panel > System > Advanced > Environment Variables and scroll down to Path in the second combo box.
      • Click Edit.
      • Add the paths to the SVN bin directory and the CVS install directory. Paths are semicolon-delimited.
  • Configure SVN's proxy settings:
    • In Explorer, open the %APPDATA%\Subversion folder.
    • Edit the servers file in Wordpad.
    • At the bottom, under [global], enter your proxy host and port. For example:
[global]
http-proxy-host = www-my-proxy.mydomain.com
http-proxy-port = 99999

SVN Checkout

Download and import the OSEE Team Project Set file into your workspace.

In Eclipse, open the SVN Repository perspective and check out https://dev.eclipse.org/svnroot/technology/org.eclipse.osee/trunk/. The username and password can be left blank for anonymous read-only access.

Configure a Development Runtime

Using an SVN client such as Subversive, check out into your Eclipse workspace all the projects from https://dev.eclipse.org/svnroot/technology/org.eclipse.osee/trunk/. When configuring this SVN repository leave the user name and password blank in order to get anonymous, read-only access.

  1. Follow the PostgreSQL installation instructions.
  2. Use the configuration /org.eclipse.osee.support.config/launchConfig/OSEE Demo Application Server [localhost].launch to run an OSEE application server
  3. Use the configuration /org.eclipse.osee.ats.config.demo/MasterTestSuite_DemoDbInit.launch to initialize an OSEE database
  4. Use the configuration /org.eclipse.osee.ats.config.demo/MasterTestSuite_DemoDbPopulate.launch to populate the database for demonstration purposes
  5. Use the configuration /org.eclipse.osee.support.config/launchConfig/OSEE Demo product [localhost].launch to run a local OSEE client

Back to the top