我试图告诉 gradle 带有*.dsl
扩展名的文件应该被编译为 groovy 文件,所以我添加了一个包含模式的源集并更改了编译任务包含属性:
sourceSets {
...
dsl_scripts {
groovy {
include '**/*.dsl'
}
}
}
compileDsl_scriptsGroovy.includes = ['**/*.dsl']
但是当我在调试模式下运行构建时,它会跳过所有*.dsl
文件并显示以下消息:
Skipping task ':compileDsl_scriptsGroovy' as it has no source files
以下行成功输出了我尝试编译的所有文件:
println sourceSets.dsl_scripts.allSource.matching({include '**/*.dsl'}).getFiles()
我做错了什么?
编辑:我在 gradle 源代码中找到了以下代码段:
FileCollection groovyJavaOnly = spec.getSource().filter(new Spec<File>() {
public boolean isSatisfiedBy(File element) {
return element.getName().endsWith(".groovy") || element.getName().endsWith(".java");
}
});
spec.setSource(new SimpleFileCollection(groovyJavaOnly.getFiles()));
是否可以覆盖?