Hello,
I’m trying to optimise build time in a multi-module java build using the --parallel
switch.
Module B depends on module A.
Both modules have their own jUnit tests, and currently tests in B cannot start before tests in A completed.
Is it possible to start the tests in B earlier, i.e. as soon as jar A is ready?
So that tests from both modules could run in parallel.
Thank you