Run all microservices in a multi-project gradle build
问题 I have a multi-project gradle build that's roughly set up like this: RootProject - ServiceA - ServiceB - ServiceC - UI Each of these subprojects is using the Spark framework and runs an embedded web server. It's basically a microservices setup, so they all need to be up and running for the system as a whole to work. They each have a task defined like this: task runApp(type: JavaExec) { main = 'App' classpath = sourceSets.main.runtimeClasspath } I know I can manually start each service either