I have an OSGi bundle which is in Eclipse IDE represented as Eclipse Plug-in Project. The only way I found to satisfy the dependencies of this plug-in/bundle is to
- 1) import all dependencies (.jar files) through
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 also have to manually import dependencies to Eclipse to fix the compilation errors.
QUESTION:
Is there a solution which does not require such irritating steps? I just want to pull the changes from repository and continue my work without need to fix the dependecies in MANIFEST.MF
again and again...
P.S.: To retrieve dependencies we use Apache Ivy.