I have the following project layout
|
|- Project A
|
|- Project B
|
|- Project C
Project C has compile time dependencies on the generated class files of Projects A and B.
I've declared the dependencies in the
Maven pom.xml files.
When I run the "compile" goal for Project C, it expects to find the .jar files for Project A and Project B in the repository. How do I configure it so that it looks for the .class files in Project A and Project B? Or have I got the wrong end of the stick, do I *need* to create the Project A and Project B jar files first?