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 "Plugin/Feature Configuration Guidelines"

Line 1: Line 1:
 
This page describes the guidelines when creating new plugins for the EMFStore.  
 
This page describes the guidelines when creating new plugins for the EMFStore.  
  
== Plugin settings ==
+
For the following settings we assume that we want to create a new plugin "test".
  
For the following settings we assume that we want to create a new plugin with the name "test".  
+
== General settings  ==
 +
 
 +
These settings can be modified in the "New Plug-in Project" wizard.<br>
  
 
====== Namespace  ======
 
====== Namespace  ======
Line 9: Line 11:
 
The plugin-name should begin with "org.eclipse.emf.emfstore". Therefore the name of our test plugin and the prefix for the packages would be "org.eclipse.emf.emfstore.test".  
 
The plugin-name should begin with "org.eclipse.emf.emfstore". Therefore the name of our test plugin and the prefix for the packages would be "org.eclipse.emf.emfstore.test".  
  
====== JRE System Library ======
+
====== Execution Environment ======
  
 
As JRE version the plugin should use 1.5, so please select "JSE-1.5".  
 
As JRE version the plugin should use 1.5, so please select "JSE-1.5".  
Line 23: Line 25:
 
====== Provider  ======
 
====== Provider  ======
  
For the provider please enter "Eclipse Modeling Project".
+
For the provider please enter "Eclipse Modeling Project".  
 +
 
 +
<br>

Revision as of 08:33, 28 June 2012

This page describes the guidelines when creating new plugins for the EMFStore.

For the following settings we assume that we want to create a new plugin "test".

General settings

These settings can be modified in the "New Plug-in Project" wizard.

Namespace

The plugin-name should begin with "org.eclipse.emf.emfstore". Therefore the name of our test plugin and the prefix for the packages would be "org.eclipse.emf.emfstore.test".

Execution Environment

As JRE version the plugin should use 1.5, so please select "JSE-1.5".

Version

As version please use the current version (see in other plugin) plus the qualifier, e.g. "0.9.0.qualifier".

Name

Enter a describing name for your plugin plus "(Incubation)", e.g. "Cool Test Plugin (Incubation)".

Provider

For the provider please enter "Eclipse Modeling Project".


Back to the top