0
def mergedCompileClasspath == null
project.sourceSets.each {
if (mergedCompileClasspath == null)
mergedCompileClasspath = it.compileClasspath
else
mergedCompileClasspath .plus(it.compileClasspath)
}
plus()メソッドが機能していません。 compileClassPathは不変ですか?空のfileCollectionを作成するには?空のfileCollectionを作成するにはどうすればいいですか?