I have to create custom task in gradle to run 3 spring boot apps, but first 'dependsOn' block other commands from my task and only one app starts.
task startApps(type: Exec)
{
dependsOn 'modules::module_1::bootRun'
dependsOn 'modules::module_2::bootRun'
dependsOn 'modules::module_3::bootRun'
}
Anyone know how to do this ? Help me ;)