2017-07-27 70 views
0
def mergedCompileClasspath == null 
project.sourceSets.each { 
     if (mergedCompileClasspath == null) 
      mergedCompileClasspath = it.compileClasspath 
     else  
      mergedCompileClasspath .plus(it.compileClasspath) 

} 

plus()方法不起作用。 compileClassPath是不可變的?如何創建一個空的fileCollection?Gradle如何創建一個空的fileCollection?

回答

0

您可以使用空集合調用Project.files()

def emptyFileCollection = project.files([])