I have a question regarding using MyEclipse in place with a working copy of a Subversion repository. I am working on a project that is using Subversion for our code repository and I am trying to use a MyEclipse project to build and develop a web project. I have checked out a working copy of my Subversion repository using TortoiseSVN and I am trying to set up a MyEclipse project to use my source files directly in this working copy.
When I do a build, the builder will compile my .java files that are located in my src folder and create .class files in my WebRoot/WEB-INF/classes folder and will also copy over some hibernate xml files (.hbm.xml) from the src folder location (which is versioned) to the classes folder location (which is not versioned). This is all good news and an expected result. However, the MyEclipse builder also seems to copy my .svn folders from the src location to the classes location which causes my TortoiseSVN to complain about .svn folders where they are not supposed to be. Is there some way to prevent a MyEclipse build from copying the .svn files to the separate build output location?
Thanks!!!
Jerry