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

Passage/FAQ

< Passage
Revision as of 05:23, 23 March 2019 by Alexander.fedorov.arsysop.ru (Talk | contribs) (Eclipse Passage FAQ)

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

Integration

How do I include Eclipse Passage to my Target Platform?

Currently we consider the following typical scenarios:

Declare licensing constraints for your functionality (using either MANIFEST.MF or component.xml). In this case it is sufficient to have "Compile" feature in your target:

<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
    <unit id="org.eclipse.passage.lic.compile.feature.feature.group" version="0.0.0"/>
    <repository location="https://download.eclipse.org/passage/drops/milestone/0.4.0-M1/lic"/>
</location>


Execute licensing constraints for your functionality (for top-level components, that includes application or/and product definition). In this case you need to have "Execute" feature in your target:

<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
    <unit id="org.eclipse.passage.lic.execute.feature.feature.group" version="0.0.0"/>
    <repository location="https://download.eclipse.org/passage/drops/milestone/0.4.0-M1/lic"/>
</location>


Define licensing metadata or extend the Eclipse Passage. In this case you need to have "Define" feature in your target:

<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
    <unit id="org.eclipse.passage.lic.define.feature.feature.group" version="0.0.0"/>
    <repository location="https://download.eclipse.org/passage/drops/milestone/0.4.0-M1/lic"/>
</location>

Copyright © Eclipse Foundation, Inc. All Rights Reserved.