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

E4/Scripting/Contribute

< E4‎ | Scripting
Revision as of 09:50, 30 January 2014 by Christian.pontesegger.web.de (Talk | contribs) (Created page with "= EASE - Contributing = == Prerequisites == To build EASE in Eclipse you should start with 'Eclipse for RCP and RAP Developers'. After startup go to Preferences/Maven/Discov...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

EASE - Contributing

Prerequisites

To build EASE in Eclipse you should start with 'Eclipse for RCP and RAP Developers'. After startup go to Preferences/Maven/Discovery and click Open Catalog. Afterwards install the Tycho Configurator.

Repository locations

The core components along with the JavaScript interpreter can be obtained from eclipse directly. Check the web frontend for git / http clone urls. The python interpreter is hosted on Github due to licensing issues.

After importing you should set your target platform. Therefore open org.eclipse.ease.releng.target/org.eclipse.ease.releng.target.target and hit 'Set as target platform'.

Building

The whole project can be built by right clicking on org.eclipse.ease.releng / Run As / Maven build. Enter 'clean install' as your goals. After the build process you can find a p2 update site available at org.eclipse.ease.releng.p2/target/repository.

Providing code

Currently your best chance to provide code is to create a git patch and submit it via bugzilla. Before creating the patch make sure to have your formatter set to the default 'Eclipse built in'.

Have a look at the open bugs if you are not sure where to start.

Back to the top