I have a big project that I want to import to Eclipse, but everytime I do that I get:
Invalid project description.
D:\svn\myproject\vr overlaps the workspace location: D:\svn\myproject\vr
I also reinstalled Eclipse, then set my workspace to where the program exists and then I choose to import the project and a开发者_开发知识库lways get this error.
Anyone has a solution for this? Am I doing something wrong?
Thanks.
Use another EMPTY (thus clean) directory for your clean workspace. Eclipse doesn't require projects to be IN the workspace directory.
Go to Eclipse preferences. Search for workspaces. Remove the workspace that has the same path as your project. Your workspace should be at least one folder up. Restart Eclipse and import your project.
Example: Invalid project description. C:\Development\workspace\joy overlaps the workspace location: C:\Development\workspace\joy
Remove the \joy workspace and use only C:\Development\workspace\
Good luck.
Check the File .project and look for The Property
<name>NameOfProject</name>
, The Folder that contains the file, must be named equal to NameOfProject...
In other manner, the file .project must be contained in a folder with name NameOfProject
Please rename the folder.
Eclipse doesn't allow to open a project that the existing workspace is a subfolder or same folder of that project.
I agree that the error says the obvious and does not state the issue.
Solution: Create the workspace in a higher hierarchy than the project folder OR in a complete separated folder.
* Users who are migrating from IDEA might be confused by the workspace notion of Eclipse. Eclipse's workspace notion is targeted at the potential to embed different projects that don't reside in a mutual folder structure. As this might be a logical notion, most projects in a workspace, from my experience, do reside in the same folder structure, hence misses the 80-20 rule.
for me the problem was the following:
I was trying to import a project that already existed in my default workspace. Think about it; you are selecting "import into workspace" but if you look in your files directory, the project is already in your workspace, thus it's overlapping.
Here is what I would recommend:
from windows file explorer i moved the entire project outside of the default workspace. now i can import it into the work space.
alternatively there is also a few options to import existing code into your workspace ( think its in file --->new project-->android project from existing code , etc etc
I encountered this same problem:
- I had a project directory called "demo1".
- I created a new workspace using that same "demo1" directory as the workspace root directory.
- When I went to import that project directory (which was the same as my root workspace directory), I got the "overlaps the workspace" error.
I'm using "Eclipse IDE for C/C++ Developers, Version: Indigo Service Release 2"
My solution:
- Exit Eclipse
- Delete the .metadata directory (this is created each time you start Eclipse) from inside my workspace directory ("demo1").
- Create a new directory called "demo1" within the existing "demo1" directory. So now I have "demo1/demo1".
- Move all the existing files and directories in my existing project, plus the .cproject and .project files (and the .settings directory if it exists), into that new "demo1" subdirectory.
- Restart Eclipse, and select the original "demo1" directory as my workspace.
- Go to File->Import, select "General" and "Existing projects into workspace". Click Next.
- Select the new "demo1" subdirectory as the project I wanted to import into my workspace.
- Make sure "Copy projects into workspace" is not checked.
- Click Finish, and it worked. Project builds.
FYI.
Eclipse creates a .metadata directory, a .cproject file, and a .project file (and sometimes a .settings directory). You need the .cproject and .project file, and the .settings directory if it exists. The .metadata directory is a temporary directory which Eclipse creates or updates each time it is opened. It can be deleted without any effect.
I came upon this today but did not see any answers here that addressed my particular issue. I had copied the contents of my project directly into the workspace (e.g. the src, res, Manifest, etc). You must put your project files into a directory of their own (look in .project and see the exact naming). Create your project directory and move your files into it and you can now import your project into the workspace.
From what ever root you have, keep your workspace folder separate from your code folder. So maybe:
C:\code\...
C:\workspace\
Like Ghostbusters, don't let the streams cross.
What I did to solve the problem:
Rename the Project.
- For example, the issue was with
"C:\NividousCode\Production_Daily_HealtchCheck"
(Eclipse returned error that this overlaps with another project - which was true I did have another project in another directory called"C:\cjaphe\Production_Daily_HealtchCheck"
)
- For example, the issue was with
Solution was to
"C:\NividousCode\Production_Daily_HealtchCheck"
to"C:\NividousCode\Production_Daily_HealtchCheck_TEMP"
When I the projected, Eclipse did not complain! and worked!
精彩评论