我的构建文件很大且难以维护,如何将构建文件拆分为单独的文件,将较小的任务导入主gradle文件
答案 0 :(得分:6)
<强>的build.gradle 强>
apply from: 'other.gradle'
<强> other.gradle 强>
println "configuring $project"
task hello << {
println 'hello from other script'
}
输出gradle -q hello
> gradle -q hello
configuring root project 'configureProjectUsingScript'
hello from other script