If I have two tasks in task graph, out of which one blocks the build, like runServer
then is there any way I can run other task let’s say copyResources
in --continuous
mode. I could start two gradle processes in two terminals but thats not optimal user experience.
I could see a reference to an upcoming non blocking task API but not sure if it is already available in 2.8. Also that would mean changes are required to runServer
task which might be coming from a plugin on which one doesn’t have any control. Any other workarounds?