我正在尝试使用gradle构建Java项目,而我的项目结构如下所示:
Root
|
|----Child
| |
| Child1 (build.gradle)
|
|
|----Child12
| |
| Child111
| |
| Child222(build.gradle)
|
settings.gradle
如您所见,在项目结构中,我通过修改
gradle eclipse build
并包括以下子项目来一次为所有项目(Child1,Child222)做settings.gradle
:include 'Child/Child1'
include 'Child12/Child111/Child222'
这样构建就可以了。
而将项目(Child1,Child222)导入到eclipse中时,出现以下错误:
创作问题
Path for project must have only one segment.
因为,在Child1的
.project
文件中<projectDescription>
<name>Root/Child1</name>
<projectDescription>
项目名称显示为
Root/Child1
而不是Child1
。无论如何,我可以将项目导入Eclipse吗?
最佳答案
我知道了,我如下更改了settings.gradle
文件:
include 'Child:Child1'
include 'Child12:Child111:Child222'
对我来说很好。
关于eclipse - 如何在嵌套项目上构建gradle,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43847403/