I have structured my jave project as:
MyProejct
- src
- build
- test
- lib
- ..
In the root of my lib folder, I've placed all of my external .jar files (hibernate, jboss, etc). Now I have decided to move all my third-party jar files into another repo (Namely Lib) and have them on my lib folder while checking out the project. I've used svn:externals to do this. I have created my Lib repo like the following:
Lib Repository
- hibernate
- jsf
- junit
- ...
Why when I refer these jar files using svn:external property to different folders in my Lib repo, only .jar files in my last external property are checked out?