build.gradlegradle
build.gradle
task build(type: GradleBuild) { buildFile = 'other.gradle' tasks = [ 'hello'] }
other.gradleui
other.gradle
task hello << { println "hello from the other build." }
Output of gradle -q buildcode
gradle -q build hello from the other build.co