I am launching my build(1).gradle with ‘–continue’ option:
>gradle mytask --continue
mytask has a type of GradleBuild. and it is launching another build(2).gradle, but seems option “–continue” is not pasing further to this build.gradle. Is there any way to pass ‘–continue’ option further to another build.gradle?
Well I have found that --continue is passing further, actually.
It occured that my trouble is causing by android plugin task - “connectedAndroidTest” - which fails script execution, if an error occured in any test =(