spring - Running tasks in parallel in Gradle -
is possible run 2 (never-ending) tasks in gradle? case developing web application runs backend on spring boot via spring boot plugin's bootrun tasks , frontend via grunt serve. grunt serve can run via gradle grunt plugin (gradle grunt_serve) currently, have run gradle bootrun task , grunt serve separately. if run developers save quite few precious seconds per each re-run. have seen solution using explicit usage of thread class, maybe there better solution this? gradle --parallel-task1 bootrun --parallel-task2 grunt-serve
Comments
Post a Comment