Skip to content

Commit

Permalink
[FIXED JENKINS-15525] Allow dashes in module names
Browse files Browse the repository at this point in the history
Add support for modules with dashes in their names for the projectset parse
  • Loading branch information
mc1arke committed Nov 16, 2012
1 parent 3363c9d commit d2c7f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/scm/CvsProjectset.java
Expand Up @@ -46,7 +46,7 @@
public class CvsProjectset extends AbstractCvs {

private static final Pattern PSF_PATTERN = Pattern.compile("<project reference=\"[^,]+,((:[a-z]+:)([a-z|A-Z|0-9|\\.]+)" +
"(:([0-9]+)?)?([/|a-z|A-Z|_|0-9]+)),([/|A-Z|a-z|0-9|_|\\.]+),([A-Z|a-z|0-9|_|\\.]+)(,(.*?)){0,1}\"/>");
"(:([0-9]+)?)?([/|a-z|A-Z|_|0-9]+)),([/|A-Z|a-z|0-9|_|\\.|\\-]+),([A-Z|a-z|0-9|_|\\.|\\-]+)(,(.*?)){0,1}\"/>");

private final CvsRepository[] repositories;
private final boolean canUseUpdate;
Expand Down

0 comments on commit d2c7f26

Please sign in to comment.