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

Orbit Source Bundles In Your Build

Revision as of 17:18, 28 May 2007 by Pascal rapicault.ca.ibm.com (Talk | contribs) (New page: Adding orbit source bundles to your build Typically source features are being generated as part of the build, find the build.properties requesting the creation of the source feature (it u...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Adding orbit source bundles to your build

Typically source features are being generated as part of the build, find the build.properties requesting the creation of the source feature (it usually appears in the build.properties of the SDK feature including your source plugin) and append an entry for each of the source plug-in you are reconsumming from Orbit. The format of this entry is: plugin@<pluginId>;version=<pluginVersion>.qualifier;unpack=true

For example, the build.properties of the org.eclipse.sdk feature has now the following format generate@org.eclipse.platform.source = org.eclipse.platform,plugin@javax.servlet.source;version=2.4.0.qualifier;unpack="true",plugin@javax.servlet.jsp.source;version=2.0.0.qualifier;unpack="true",

Back to the top