tags:

views:

44

answers:

2

Suppose, I am doing a full build on my large project which has 7 modules and on the 6th module, the build failed because a test failed. Is there any way by which I can start the build from the point it failed?

A: 

You could run the build of module 6 separately to see if it still fails, but I'm afraid that you need to build all modules from the beginning when you want to run the "big" build.

Edit: Of course the subsequent builds will be faster because the code of modules 1-5 are already compiled, unless you run clean as part of your build.

fish
Yes.. I know this.. But i was looking for a way to start the build from the point it failed..
Shekhar
+2  A: 

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

-rf, --resume-from
          Resume reactor from specified project

See the Advanced Reactor Options for details.

Pascal Thivent
Thanks for this.i will give it a shot
Shekhar