Is there somewhere a list of all possibilities, to define dependencies in an Eclipse RCP project? maybe filtered by resources?
Possible dependencies:
- from other Eclipse RCP Plugins
- by package, without explicitely defining the plugin
- jar libs
- ...
Is there somewhere a list of all possibilities, to define dependencies in an Eclipse RCP project? maybe filtered by resources?
Possible dependencies:
as you said, you can use the following directives in the MANIFEST.MF
to define dependencies
Require-Bundle
(for depending on specified bundles)Import-Package
(for depending on packages available by export from other bundles)Bundle-Classpath
(for embedded paths(!) and JARs)also, when you create a Fragment
, it must define its Fragment-Host
, of course, and that is also a dependency in a sense
in an RCP project you can setup Features, and you can specify dependencies to bundles for your RCP app in these features