I have a multi-module Maven project A. There are two modules: B and C, where C depends on B.
Let's say C is a web application, so by default B.jar would be included in the WEB-INF/lib directory of C.
But instead of this, I want to compile B, and then move its compiled classes to the target directory of C.
How can I achieve this in Maven?
Thank you for your answers,
balázs