I have 3 projects:
- Project A: An eclipse plugin
- Project B: An eclipse plugin dependent on project A
- Project C: An eclipse plugin containing
SWTBot
tests only to test project B
Project A is compiled via maven independently.
Then Project B and Project C are compiled together and in order to launch the tests, tycho is used.
The problem is when compiling project B and C via maven, I get the following error:
[ERROR] Internal error: java.lang.RuntimeException: "No solution found because the problem is unsatisfiable.": ["Unable to satisfy dependency from B 1.0.0.qualifier to bundle A 0.0.0.", "No solution found because the problem is unsatisfiable."] -> [Help 1]
What should I do so that tycho will be aware of project A (available in the maven repository) when compiling project B and C?