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

Difference between revisions of "STP Build Using Buckminster"

Line 7: Line 7:
 
== Prerequisite ==
 
== Prerequisite ==
 
=== Target Platform ===
 
=== Target Platform ===
You need setup a target platform first before you building STP, the target platform is just a Eclipse SDK installation plus all the prerequisite plugins needed by STP
+
You need setup a target platform first before you building STP, the target platform is just a Eclipse SDK installation plus all the prerequisite plugins needed by STP, e.g. you need install plugins below to /shared/eclipse_java/eclipse directory:
 +
* eclipse-SDK-3.3.1.1-linux-gtk.tar.gz
 +
* wtp-sdk-R-2.0.1-20070926042742.zip
 +
* GEF-SDK-3.3.1.zip
 +
* GMF-sdk-2.0.1.zip
 +
* emf-sdo-xsd-SDK-2.3.1.zip
 +
* emf-query-SDK-1.1.zip
 +
* emf-validation-SDK-1.1.1.zip
 +
* emf-transaction-SDK-1.1.1.zip
 +
* mdt-ocl-SDK-1.1.1.zip
 +
* m2t-jet-SDK-incubation-0.8.1.zip
 +
* orbit-R200709171314.zip
 +
* jsr_jars-0.7.0
 +
 
 +
Since STP is under developing, so all the plugins list here will be changed, you can refer STP download page to get the latest information: http://download.eclipse.org/stp/downloads/
 +
 
 +
To run unit test, you need install test framework plugins too:
 +
* eclipse-test-framework-3.3.1.1.zip
 +
 
 +
 
 +
 
 +
 
 +
 
 +
 
 
=== JDK Installation ===
 
=== JDK Installation ===
 
=== Apache Ant ===
 
=== Apache Ant ===

Revision as of 02:17, 28 December 2007

Introduce

The purpose of this document is to supply some information on the new STP build system based on Buckminster. If you only want to use it to build STP plugins, then it needn't any backgrounds of Buckminster at all, otherwise, say extend the build system to add your new plugins to STP build system, then an understanding of Buckminster will be good.

Use Build System

This section will introduce on how to use the new build system to build STP quickly, here I will show commands based on Linux, building on Window is similar except some different arguments, I will give more detail at the end of this section.

Prerequisite

Target Platform

You need setup a target platform first before you building STP, the target platform is just a Eclipse SDK installation plus all the prerequisite plugins needed by STP, e.g. you need install plugins below to /shared/eclipse_java/eclipse directory:

  • eclipse-SDK-3.3.1.1-linux-gtk.tar.gz
  • wtp-sdk-R-2.0.1-20070926042742.zip
  • GEF-SDK-3.3.1.zip
  • GMF-sdk-2.0.1.zip
  • emf-sdo-xsd-SDK-2.3.1.zip
  • emf-query-SDK-1.1.zip
  • emf-validation-SDK-1.1.1.zip
  • emf-transaction-SDK-1.1.1.zip
  • mdt-ocl-SDK-1.1.1.zip
  • m2t-jet-SDK-incubation-0.8.1.zip
  • orbit-R200709171314.zip
  • jsr_jars-0.7.0

Since STP is under developing, so all the plugins list here will be changed, you can refer STP download page to get the latest information: http://download.eclipse.org/stp/downloads/

To run unit test, you need install test framework plugins too:

  • eclipse-test-framework-3.3.1.1.zip




JDK Installation

Apache Ant

Build STP

Test STP

Create STP update Site

Build on Windows

Extend Build System

How to Add New Plugin

Back to the top