I'm learning the whole version control thing with subversion and using trunk, branch, tags etc for all my different workings/versions of a project. I'm also trying to get up to speed with using continuous integration with Jenkins (tried ccnet, what a nightmare to setup!).
So my question is, if I have the following areas in my project SVN:
file:///E:/Data/SVN/MyProject/trunk
file:///E:/Data/SVN/MyProject/tags/version_1.0
file:///E:/Data/SVN/MyProject/branch/version_1.1
.. what is best practice regarding setting up this build project in Jenkins so that all of the different areas in my SVN are continuously monitored and any changes built?
Would I setup one project with several source code repositories, one for each version/trunk etc? Or would I setup multiple build projects? How do I do it?
EDIT: Should I be using a matrix project for this (Build multi-configuration project)?