[GRADLE-1396] Eclipse plugin doesn't generate files for projects that were renamed via changing the projectDir Created: 22/Feb/11 Updated: 04/Jan/13 Resolved: 23/Feb/11 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | 0.9.2 |
Fix Version/s: | None |
Type: | Bug | ||
Reporter: | David Gileadi | Assignee: | Unassigned |
Resolution: | Not A Bug | Votes: | 0 |
Description |
When a project has been renamed via something like the following in settings.gradle: project(':base:renamedProject').projectDir = file(':base:myProject') The eclipse plugin doesn't generate .classpath or .project files for that project. |
Comments |
Comment by Peter Niederwieser [ 22/Feb/11 ] |
file(':base:myProject') will give you a file system path with colons in its name. Probably not what you want. I'm not aware of any problems with generating Eclipse files for projects with customized project directory. |
Comment by David Gileadi [ 23/Feb/11 ] |
You're right, of course. Please forgive the noise. |