Reputation: 4532
This is driving me crazy. I created a Dynamic Web Project in eclipse and later checked the code into a project in SVN. Now when I check out the project into a new workspace using the svn plugin in eclipse it does not prompt the Create New Project Wizard. Apparently this is not prompted if the .project file is checked into the repository. This would have worked ideally if the code is checked out into a Dynamic Web Project again. It is not. I do not see the Server option in the project properties. My guess is it is getting checked out into a JavaEE project. I want to delete the .project from the repository and try but am hesitant as it might screw up the repository. My question is --
Googling does not give me any results. Hope someone ran into this problem here.
Thanks, - Pav
Upvotes: 2
Views: 650
Reputation: 5180
I never upload to repository my IDE dependant files. Main benefits imho:
I use Maven and M2Eclipse plugin (plus integrations: WTP and SVN). With this integrations I get this option menú while browsing my repositories (CVS or SVN) in Eclipse. In netbeans there is similar option.
Hope this will help you
Upvotes: 2
Reputation: 1494
The type of project (Java, Web, etc.) is stored under the .settings
folder next to your .classpath
and .project
files
Upvotes: 1
Reputation: 24788
I always checked-in the .project file and all metadata files into SVN if it is my own project. Some open source projects (Guava, etc) won't do that, so in that case, I set SVN to ignore the metadata files.
Upvotes: 0