我在eclipse中大致有这个项目结构:
rootproj
---settings.gradle
---build.gradle
eclipseProject
---folderA
------build.gradle
---folderB
------build.gradle
我将settingsA和folderB声明为settings.gradle中的gradle项目。 folderA和folderB有一个src / main / java,里面有src文件
有没有办法,在eclipse中,我可以右键点击&eclipseProject-> gradle->刷新依赖关系'并将文件夹A和文件夹B的依赖项下载并添加到&#eclipseProject" Gradle Dependencies"夹?
答案 0 :(得分:1)
您是单独导入项目还是导入根项目?导入根项目,您将获得单独列出的子项目。
答案 1 :(得分:0)
这就是我这样做的方式:
首先,我需要将eclipseProject
作为gradle项目添加到settings.gradle中。然后我需要将build.gradle
文件添加到eclipseProject
。然后在build.gradle
中的eclipseProject
文件中,我必须添加这些行来配置.classpath文件,当我右键单击eclipseProject->gradle->refresh dependencies
时会自动生成该文件:
eclipse.classpath.plusConfigurations += [
project(':folderA').configurations.compile,
project(':folderB').configurations.compile
]