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

Difference between revisions of "EASE/Contributor Guide"

Line 2: Line 2:
  
 
Contribution to an open source project is not only about coding. There are multiple other ways to help this project, which we will describe below.
 
Contribution to an open source project is not only about coding. There are multiple other ways to help this project, which we will describe below.
 +
 +
__TOC__
  
 
=== Source Contributions ===
 
=== Source Contributions ===
  
When you want to work on the source code you should start with the latest version of Eclipse for RCP and RAP develpopers. Start up with a fresh workspace and download the Tycho extensions.
+
==== Basic Setup ====
  
Our preferred way of receiving contributions is via Gerrit. So clone our core repository org.eclipse.ease.core ([https://git.eclipse.org/r/#/admin/projects/ease/org.eclipse.ease.core check the link] for clone options). If you want to upload your changes, make sure you use the http option and use your eclipse account data.
+
* [https://dev.eclipse.org/site_login/createaccount.php Create an Eclipse account] if you do not have one yet
 +
* [http://wiki.eclipse.org/Development_Resources/Contributing_via_Git#Eclipse_Foundation_Contributor_License_Agreement Sign the CLA]
 +
* [https://git.eclipse.org/r/#/settings/http-password Find your Gerrit password]
  
We have 2 additional repositories:
+
We receive conrtibutions via Gerrit. If you know how to setup Gerrit, you may skip the next section.
* [https://git.eclipse.org/r/#/admin/projects/ease/org.eclipse.ease.modules org.eclipse.ease.modules] for additional script modules
+
* [https://git.eclipse.org/r/#/admin/projects/ease/org.eclipse.ease.scripts org.eclipse.ease.scripts] for useful sample scripts in various script languages
+
  
After importing all projects in your workspace, set the target platform located at: [http://git.eclipse.org/c/ease/org.eclipse.ease.core.git/tree/releng/org.eclipse.ease.releng.target/org.eclipse.ease.releng.target.target org.eclipse.ease.releng.target/org.eclipse.ease.releng.target.target].
+
==== How to checkout with Gerrit ====
   
+
 
Before you commit changes please load our code formatter template: Preferences/Java/Code Style/Formatter, click import and load the file [http://git.eclipse.org/c/ease/org.eclipse.ease.core.git/tree/developers/formatter.xml developers/formatter.xml]
+
* make sure you have installed following components (or directly get [https://www.eclipse.org/downloads/packages/eclipse-rcp-and-rap-developers/lunasr1 Eclipse for RCP and RAP Developers]):
 +
  * Eclipse Git Team Provider
 +
* Mylyn Reviews Connector: Gerrit
 +
* Mylyn Versions Connector: Git
 +
* Open the Git Repositories view
 +
* "Clone from repo"
 +
* Select Gerrit
 +
* "Add a new repository"
 +
* screenshot
 +
* select the appropriate repo
 +
* clone
 +
* import all projects
  
 
For detailed instructions on how to contribute with gerrit, please read [http://www.vogella.com/tutorials/Gerrit/article.html#gerritsetup_user this excellent tutorial] from Lars Vogel.
 
For detailed instructions on how to contribute with gerrit, please read [http://www.vogella.com/tutorials/Gerrit/article.html#gerritsetup_user this excellent tutorial] from Lars Vogel.
 +
 +
==== Script Contributions ====
 +
 +
To consume/provide sample scripts use [https://git.eclipse.org/r/#/admin/projects/ease/org.eclipse.ease.scripts org.eclipse.ease.scripts]. To test your scripts you need EASE to be installed in your running IDE.
 +
 +
==== Module Contributions ====
 +
 +
To provide new script modules use [https://git.eclipse.org/r/#/admin/projects/ease/org.eclipse.ease.modules org.eclipse.ease.modules]. You need the EASE core components to be part of your target platform.
 +
 +
==== Core Framework Contributions ====
 +
 +
Work on the core framework, UI integration and script interpreters.
 +
 +
* check out [https://git.eclipse.org/r/#/admin/projects/ease/org.eclipse.ease.core org.eclipse.ease.core].
 +
* set the target platform located at: [http://git.eclipse.org/c/ease/org.eclipse.ease.core.git/tree/releng/org.eclipse.ease.releng.target/org.eclipse.ease.releng.target.target org.eclipse.ease.releng.target/org.eclipse.ease.releng.target.target].
 +
 +
==== Coding Rules ====
 +
 +
Before you commit changes please load our code formatter template: Preferences/Java/Code Style/Formatter, click import and load the file [http://git.eclipse.org/c/ease/org.eclipse.ease.core.git/tree/developers/formatter.xml developers/formatter.xml].
 +
  
 
=== Bug Reports ===
 
=== Bug Reports ===

Revision as of 04:24, 25 November 2014

EASE Contributor Guide

Contribution to an open source project is not only about coding. There are multiple other ways to help this project, which we will describe below.

Source Contributions

Basic Setup

We receive conrtibutions via Gerrit. If you know how to setup Gerrit, you may skip the next section.

How to checkout with Gerrit

* Eclipse Git Team Provider
* Mylyn Reviews Connector: Gerrit
* Mylyn Versions Connector: Git
  • Open the Git Repositories view
  • "Clone from repo"
  • Select Gerrit
  • "Add a new repository"
  • screenshot
  • select the appropriate repo
  • clone
  • import all projects

For detailed instructions on how to contribute with gerrit, please read this excellent tutorial from Lars Vogel.

Script Contributions

To consume/provide sample scripts use org.eclipse.ease.scripts. To test your scripts you need EASE to be installed in your running IDE.

Module Contributions

To provide new script modules use org.eclipse.ease.modules. You need the EASE core components to be part of your target platform.

Core Framework Contributions

Work on the core framework, UI integration and script interpreters.

Coding Rules

Before you commit changes please load our code formatter template: Preferences/Java/Code Style/Formatter, click import and load the file developers/formatter.xml.


Bug Reports

Creating bug reports and feature requests is a valuable contribution to the project. Please be as precise as possible when describing your problem. When facing exceptions a stacktrace is a valuable piece of information. Starting eclipse with the -console command line parameter might reveal such information.

File your bugs under technology/EASE.

Help newcomers

Answering questions on the forums, mailing list and on stackoverflow encourage new users to work with EASE and eventually become contributors in the future. Be polite and help out wherever you can. Do not rely on committers to answer every question. Even if we try, we want to encourage our users to help each other.

Create UIs/Graphics

UI and icon design are important to attract users. Bad visuals might repel users without even exploring the great things you could do with EASE. We host a special EASE UI Design project for icon ideas, templates and UI mockups. For mockups we prefer Wireframe Sketcher, but accept any other freely consumable format, too.

Promotion

Blog, write, chat about EASE and spread the word. Attracting new users and developers is crucial to build up a living community.

Back to the top