Issue
When running a Maven build with only one thread, the Maven modules get processed sequentially.
However, when using multiple threads in a Maven build, some Maven modules will be processed in parallel. Which and how many modules will be processed in parallel depends on the dependencies that the modules have to each other.
Is there a way to see which Maven modules can and will be executed in parallel? Maybe something like a Maven execution plan?
Solution
Is there a way to see which Maven modules can and will be executed in parallel? Maybe something like a Maven execution plan?
At the moment there is no way to see that upfront. Technically it could be analysed based on the topoligicaly sorted tree of the modules.
Answered By - khmarbaise
Answer Checked By - Senaida (JavaFixing Volunteer)