Is there a possibility to compile in a maven project 2 modules concurrently, if they don't have mutual dependency? (Java)
Example: I have a pom.xml (project) which has 3 modules - A, B and C.
C is dependent on B. B and A are not dependent on anything.
So, when drawing the dependency DAG, it seems that we have 2 roots: A and B. Can we run maven in such a concurrent way, that A and B will start concurrently, and C will be started after compilation of B?