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 "SMILA/Documentation/HowTo/3rd party bundle"

(New page: # Put bundle into extension folder SMILA.extension/eclipse/plugins/ # Include new plug-in into org.eclipse.smila.extension.feature)
 
m
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
# Put bundle into extension folder SMILA.extension/eclipse/plugins/
+
It is easy to add third-party code to SMILA if it is already provided as an OSGi bundle (which is just a Java JAR with some additional entries in the MANIFEST.MF file). Many open source projects provide their libraries this way. Additionally, you can download many libraries from the [http://eclipse.org/orbit/ Eclipse Orbit] project.
# Include new plug-in into org.eclipse.smila.extension.feature
+
 
 +
To add them to SMILA:
 +
 
 +
# Add the third-part bundle to the extension folder at <tt>SMILA.extension/eclipse/plugins</tt>.
 +
# Restart Eclipse or reload your target defenition (check if the bundle is really activated).
 +
# Include plug-in information into "org.eclipse.smila.extension.feature": <br> [[Image:ExtensionFeature.jpg|600 px]]

Latest revision as of 12:25, 25 January 2012

It is easy to add third-party code to SMILA if it is already provided as an OSGi bundle (which is just a Java JAR with some additional entries in the MANIFEST.MF file). Many open source projects provide their libraries this way. Additionally, you can download many libraries from the Eclipse Orbit project.

To add them to SMILA:

  1. Add the third-part bundle to the extension folder at SMILA.extension/eclipse/plugins.
  2. Restart Eclipse or reload your target defenition (check if the bundle is really activated).
  3. Include plug-in information into "org.eclipse.smila.extension.feature":
    ExtensionFeature.jpg

Back to the top