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"

(New page: 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 with the nam...)
 
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 ==
+
== Plugin settings ==
  
For the following settings we assume that we want to create a new plugin with the name "test".
+
For the following settings we assume that we want to create a new plugin with the name "test".  
  
====== Namespace ======
+
====== Namespace ======
  
The plugin-name should begin with "org.eclipse.emf.emfstore". Therefore the name of our test plugin 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 ======
 +
 
 +
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".

Revision as of 08:28, 28 June 2012

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 with the name "test".

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".

JRE System Library

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