lets say I have 3 projects: 1 root project and 2 subprojects in a directory structure like this: projekt1/intermediateFolder/project2 projekt1/intermediateFolder/project3
project3 depends on project project2 and the settings.gradle file in project1 looks like this: include ‘intermediateFolder/project2’, ‘intermediateFolder/project3’
in this case the eclipse plugin does not generate correct eclipse files for project3 because the depency path to project2 is not correct.
if I instead put include ‘intermediateFolder:project2’, ‘intermediateFolder:project3’ in the settings.gradle file then the eclipse project files are generated correctly but gradle thinks that intermediateFolder is also a project whis is not the case.