javamaven-2

Can we start the Maven build from the point where it failed?


Suppose, I am doing a full build on my large project which has seven modules and on the sixth module, the build failed because a test failed.

Is there a way by which I can start the build from the point it failed?


Solution

  • You can resume the build from the 6th module using -rf or --resume-from:

    -rf, --resume-from :<your-module>
              Resume reactor from specified project

    See the Advanced Reactor Options for details.