2

subprojectsallprojects属性,但我怎样才能从字面上列出已知的项目子集?我尝试以下方法:

[project(':child1'), project(':child2')] {
    ...
}

这受到以下输出的启发println allprojects

[project ':stripper', project ':webui', project ':wikidigest']

但它不起作用。日志输出:

* What went wrong:
A problem occurred evaluating root project 'projects'.
> No signature of method: java.util.ArrayList.call() is applicable for argument types: (build_1ngb77rivv12hrhe33snq4jat0$_run_closure4) values: [build_1ngb77rivv12hrhe33snq4jat0$_run_closure4@38a3f968]
  Possible solutions: tail(), wait(), last(), any(), max(), wait(long)
4

1 回答 1

2

解决方案是通过调用来包装列表configure()

configure([project(':child1'), project(':child2')]) {
    ...
}
于 2012-04-11T05:59:44.267 回答