I have an OSGi package that is in the Eclipse IDE, presented as an Eclipse plug-in project. The only way I found to satisfy the dependencies of this plugin / package is
- 1) import all dependencies (.jar files) using the
File > Import... > Plug-ins and Fragments
wizard - 2) and then declare the imported dependencies in
MANIFEST.MF
Yes, this solution works, but on the other hand, after I commit the changes to our repository, all my team mates must also manually import the dependencies into Eclipse to fix the compilation errors.
Question : Is there a solution that does not require such annoying steps? I just want to pull the changes from the repository and continue working without having to fix the dependencies in MANIFEST.MF
again and again ...
PS: We use Apache Ivy to get dependencies.
source share