-
Type:
Improvement
-
Resolution: Unresolved
-
Priority:
Major
-
Component/s: subversion-plugin
When trying to use a svn tag as build parameter the tag drop down does not include all tags or branches. For example:
if the repo URL is https://repo/
and the repo has the following structure
+- repo
--+ trunk
--+ tags
| --+ tag1 |
| --+ tag2 |
--+ branches
--+ user1
| --+ branch1 |
| --+ branch2 |
--+ user2
| --+ branch1 |
| --+ branch2 |
Only
trunk
tags/tag1
tags/tag2
branches/user1
branches/user2
are listed. Is it possible to add parameter that tells the plugin how deep to look for? So that we can have
trunk
tags/tag1
tags/tag2
branches/user1
branches/user1/branch1
branches/user1/branch2
branches/user2
branches/user2/branch1
branches/user2/branch2