I'm developing a java application which leverages gradle for dependency management and SVN for version control in a windows environment. I also use the Eclipse IDE. I want to merge trunk into a working branch with SVN. I moved packages and files around in the working branch. When merging trunk into the working branch from the command line with the following command:
svn merge -r InitBranchRevision:FinalBranchRevision C:\DevTools\workspace\my_app
I get the following output:
---Merging InitBranchRevision through FinalBranchRevision into '.':
U src\main\java\my_app\ApplicationWatcher.java
D src\main\java\my_app\SomeUtil.Java
D src\main\java\my_app\dependencies
C build.gradle
How can I prevent the two deleted files above from being removed? I looked at this question, but it doesn't seem to fit this situation because our projects are configured differently.