Difference between revisions of "Quick Development Environment Setup"

From Developer Documents
Jump to navigation Jump to search
Line 4: Line 4:
 
# Get and install the latest ''Eclipse Classic IDE'' 3.7 (Indigo) stable stream build. You can find the package from [http://download.eclipse.org/eclipse/downloads/ http://download.eclipse.org/eclipse/downloads/]. You can select freely the installation location for the package, e.g. under your home directory. Just unzip the package to install Eclipse.
 
# Get and install the latest ''Eclipse Classic IDE'' 3.7 (Indigo) stable stream build. You can find the package from [http://download.eclipse.org/eclipse/downloads/ http://download.eclipse.org/eclipse/downloads/]. You can select freely the installation location for the package, e.g. under your home directory. Just unzip the package to install Eclipse.
 
# After the installation of Eclipse, check that your Eclipse is set to use the right Java Runtime Edition:
 
# After the installation of Eclipse, check that your Eclipse is set to use the right Java Runtime Edition:
#* In Eclipse platform, open Preferences from Window - Preferences.
+
#* In Eclipse platform, open "Window - Preferences".
 
#* Open page “Java / Installed JREs”.
 
#* Open page “Java / Installed JREs”.
 
#* Set the JRE to point to the previously installed JDK 6.
 
#* Set the JRE to point to the previously installed JDK 6.

Revision as of 04:57, 14 June 2011

Install Java JDK and Eclipse, and Setup the IDE for Simantics Development

  1. Get and install Java SE Development Kit 6 (JDK 6), you can download the package from http://www.oracle.com/technetwork/java/javase/downloads/index.html. Follow the installation instructions for your operating system. Using the latest JDK update is recommended.
  2. Get and install the latest Eclipse Classic IDE 3.7 (Indigo) stable stream build. You can find the package from http://download.eclipse.org/eclipse/downloads/. You can select freely the installation location for the package, e.g. under your home directory. Just unzip the package to install Eclipse.
  3. After the installation of Eclipse, check that your Eclipse is set to use the right Java Runtime Edition:
    • In Eclipse platform, open "Window - Preferences".
    • Open page “Java / Installed JREs”.
    • Set the JRE to point to the previously installed JDK 6.
  4. Install the Simantics Graph Compiler:
    • In Eclipse platform, open “Help / Install New Software”.
    • Set the installation site to "http://www.simantics.org/update/utils" in the “Work with” field and press “Add...”.
    • Select from the list the latest "Ontology development / Graph feature" and proceed with the installation. Restart Eclipse after the installation.
  5. Install the Subversive plug-in to the Eclipse platform:
    • In Eclipse platform, open “Help / Install New Software”
    • Select installation site "Indigo - http://download.eclipse.org/releases/indigo" to the “Work with” field from the preset list.
    • Click open the "Collaboration" folder and select from the list
      • Subversive SVN Team Provider
      • Subversive SVN JDT Ignore Extensions
    and proceed with the installation. Restart Eclipse after the installation.
  6. After restarting Eclipse, open the SVN Repository Exploring perspective:
    • In Eclipse platform, open “Window / Open Perspective / Other...”.
    • Select SVN Repository Exploring and press “OK”. Eclipse should open the “Install Connectors” dialog.
    • Select latest “SVN Kit 1.3.x” and press “Finish” and proceed with the installation. Restart Eclipse after the installation.

Install Simantics 1.4 Target Platform

  1. In Eclipse platform, activate the Plug-in Development perspective, either from the tab on the upper right corner of the Eclipse platform or from the “Window / Open Perspective / Other...” menu, and select Plug-in Development.
  2. Create a new general project in Eclipse by:
    • Selecting “File / New / Project...” menu item.
    • In the "Select a wizard", select “General / Project” and press “Next”.
    • Give the project a name, e.g. "Simantics_target" and press "Finish".
  3. Copy the following files into your system to some temporary location:
    For THTH/Simantics registered members, source code access is available through these alternative target definitions (user name and password are asked during the installation, these are available in the member wiki):
  4. In Eclipse Package Explorer (the window on left side of the Eclipse platform):
    • Right-click your previously created project and select "Import..." from the context menu.
    • In Select wizard, select “General / File System”, and press "Next".
    • Select in the “From directory” the folder where the previously downloaded files are located, and select the two files from the file list. Press "Finish".
  5. Set the target platform for the development with Simantics:
    • In Eclipse platform, open “Window / Preferences” and from there the “Plug-in Development / Target Platform” folder.
    • The new target definitions should be available in the list. Activate one of the following:
      • “Simantics 1.4” (for application development on Simantics platform)
      • “Simantics 1.4 (HTTPS)” (for application development on Simantics platform, if you are behind an HTTP proxy)
      • “Simantics SDK 1.4” (for Simantics platform development and application development on Simantics platform)
      • “Simantics SDK 1.4 (HTTPS)” (for Simantics platform development and application development on Simantics platform, if you are behind an HTTP proxy)
    and confirm the target platform definition by pressing "Apply" and/or "OK".
    • Wait until Eclipse finishes downloading, this may take a while. After the download is completed, there should be several plug-ins starting with "org.simantics.*" in the Eclipse Plug-in window (the window on the left side of Eclipse).
  6. Keep your platform up-to-date! Updating is as easy as reloading the target platform from Target Platform preference page:
    • In Eclipse platform, open “Window / Preferences” and from there the “Plug-in Development / Target Platform” folder.
    • Select the active target platform, e.g. Simantics SDK 1.4, from the list and press "Reload".
    • Wait until the platform is updated.

Test your installation

TODO: Make this as easy as possible, prefereably without even needing the SVN plugins.
TODO: create a buckminster build that materializes a workspace with the movie tutorial and packages that into a zip that can easily be imported into an Eclipse workspace ?
  1.  ?? Checkout movie tutorial and try running movie.product. If that works, your development platform should be operational.


Happy developing with Simantics!