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 "Orbit/Bundle Checklist"

(Example Layout)
(Migrated to GitHub)
 
Line 1: Line 1:
Here are the steps for adding a new bundle to Orbit. Please use them as a checklist to ensure that you have done
+
{{warning|Note: The contents of this page has been migrated. Please see https://github.com/eclipse/orbit/blob/master/Bundle-checklist.md for current information, or page history for historical versions. }}
everything correctly when you have a new bundle to add.
+
 
+
===IP Provenance===
+
All contributions to Orbit need to be approved for use, either automatically or by raising an iplab issue for the content if the automatic check does not work. The automatic check is done by activating the "license-check" profile, e.g. <code>mvn verify -P license-check</code>. If the automatic check fails you may need to raise an [https://gitlab.eclipse.org/eclipsefdn/emo-team/iplab/-/issues/new iplab issue (choose vet-third-party in Description dropdown to get correct template)]. Send and email to [https://accounts.eclipse.org/mailing-list/orbit-dev orbit-dev] for advice.
+
 
+
===Add the Bundle to Git===
+
In Orbit we store the metadata necessary to generate a bundle in the [http://git.eclipse.org/c/gerrit/orbit/orbit-recipes.git/ orbit-recipes] Git repository. Look at our [[Adding Bundles to Orbit]] document for instructions on how to initially put your bundle into Orbit.
+
 
+
===Verify the osgi.bnd ===
+
The osgi.bnd file is used to generate the bundle manifest (<code>META-INF/MANIFEST.MF</code>), and while this file gets generated with some defaults, it is very important to verify it as well as the contents of the generated manifest to ensure the final result is what one expects. In particular the <code>Import-Package</code> header patterns should be verified.
+
 
+
===Update the Feature===
+
In Eclipse we build features so when we add a new bundle to Orbit, we must add it to the feature so the builder is aware that we should build it. Please update <code>releng/aggregationfeature/feature.xml</code> in [https://git.eclipse.org/c/orbit/orbit-recipes.git/ orbit-recipes] with an entry for your new bundle. (you don't need one for the source bundle) Changes to the Orbit feature are done in the master branch on Git.
+
 
+
<plugin id="javax.servlet" version="2.3.0.qualifier" />
+
 
+
 
+
===Final Notes===
+
* When in doubt, look at the other bundles in Orbit to see what they did.
+
* Always check the build output to ensure that it is what you expect.
+
 
+
===Example Layout===
+
Here is an example structure for a bundle.
+
 
+
<pre>
+
my.bundle.id_1.0.0/
+
    pom.xml
+
    src/
+
        main/resources/
+
            about_files/LICENSE.txt
+
            about.html
+
    .project
+
    osgi.bnd
+
</pre>
+
 
+
[[Category:Orbit|Bundle Checklist]]
+

Latest revision as of 12:33, 3 April 2023

Warning2.png
Note: The contents of this page has been migrated. Please see https://github.com/eclipse/orbit/blob/master/Bundle-checklist.md for current information, or page history for historical versions.

Back to the top