When i use:
tasks.register("buildFull"){
dependsOn(gradle.includedBuilds.map { it.task(":build") })
}
All included builds run at the same time and some of their inner tasks are creating conflict when they are running tests or some othere tasks.
Is there a way to run only one includedBuilds at the time?
I tested this in gradle.properties it fixes this problem, but i would prefer maybe some other different way to do it?
org.gradle.workers.max=1