I have two java maven projects : project A and project B.
When I build ("mvn clean install") project A it generates source code java class in target folder.
Project B has a dependency on these generated classes from project A.
Unfortunately on project B it generates error because these classes are not found. I would like to add these classes to build path.
I can do : properties > configure buildpath but...
1) Do I have to do this on project A or project B 2) When I arrive to "configure buildpath" I don't know what to do next.
Thank you