I have a large multi-module project with a pretty lengthy integration test process. I'd like to use the Maven --resume-from/-rf option to pickup where integration-test left off if the build failed to run to completion. I've tried running something like:
mvn --resume-from my-intermediate-module integration-test but Maven complains that it can't find the sub-modules within my multi-module project that "my-intermediate-module" depends on. This seems like a catch 22, since if I resume from the intermediate module, the preceding modules aren't included in the reactor path. Yet if I include the preceding modules, then it negates the benefit of skipping past the parts I've already built. Am I missing something here? Thanks, Brian
