Community
Participate
Working Groups
This bug has apparently been around for a long time. I was playing around with the RAP Git mirror and some eclipse.ui facade bundles and happened upon this. The .project file for org.eclipse.rap.ui.views specifies org.eclipse.ui.views for the projectDescription. This breaks EGit if you have a bundle with that name already in your workspace. If you try to check out the org.eclipse.rap.ui.views bundle with a project named org.eclipse.ui.views in your workspace it will not allow you to do it. Patch to fix the problem: ### Eclipse Workspace Patch 1.0 #P org.eclipse.rap.ui.views Index: .project =================================================================== RCS file: /cvsroot/rt/org.eclipse.rap/runtime.ui/org.eclipse.rap.ui.views/.project,v retrieving revision 1.1 diff -u -r1.1 .project --- .project 15 Apr 2008 10:26:44 -0000 1.1 +++ .project 18 Nov 2010 22:39:22 -0000 @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <projectDescription> - <name>org.eclipse.ui.views</name> + <name>org.eclipse.rap.ui.views</name> <comment></comment> <projects> </projects>
Austin, thanks for the patch. Applied to CVS HEAD.