0
def mergedCompileClasspath == null
project.sourceSets.each {
if (mergedCompileClasspath == null)
mergedCompileClasspath = it.compileClasspath
else
mergedCompileClasspath .plus(it.compileClasspath)
}
plus()方法不起作用。 compileClassPath是不可變的?如何創建一個空的fileCollection?Gradle如何創建一個空的fileCollection?