hi,
I imported a java project into eclipse which had .svn folders in it. The project did on build properly and it gave errors. But, once I deleted the .svn folders from the project, eclipse did not show any errors. What is the reason ?
hi,
I imported a java project into eclipse which had .svn folders in it. The project did on build properly and it gave errors. But, once I deleted the .svn folders from the project, eclipse did not show any errors. What is the reason ?
May be, as pointed out in this thread, you need to add .svn to the list of things you don't want copied to the output folder.
Window->Preferences->Java->Compiler->Building->Output folder
Indeed, when I added added "
.svn
" to the list of "Filtered Resources", the problem went away.
I had two source directories:src
andtest
, which both were in SVN.
Apparently Eclipse realized thatsrc/.svn/entries
andtest/.svn/entries
are duplicates and it complained.