I'm looking for a way to specify that a subset of files should not be changed when merging in modifications from a particular branch, using Subversion. I found someone asking the same question, but for git.
What I have is Maven pom.xml files, which are set up when the branch is created and updated for each release from the branch. When I merge changes back to trunk from the branch, I don't want the changes in these files to be merged (and they will actually always be in conflict, as the version numbers have been updated on trunk too). Is there any way to tell subversion to accept base for just these files, for the same effect as provided by the answer to the git question?
Someone else has asked a similar question, but put it in a context where the question was the wrong one to be asking (generated code).