We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 186c2d3 commit f4cf9abCopy full SHA for f4cf9ab
src/org/exist/start/LatestFileResolver.java
@@ -80,7 +80,7 @@ public String getResolvedFileName(final String filename) {
80
81
final String artifactId = Pattern.quote(uptoToken.substring(uptoToken.lastIndexOf(File.separatorChar) + 1));
82
final String suffix = Pattern.quote(fileinfo[1]);
83
- final String patternString = '^' + artifactId + "(?:(?:[0-9]+(?:(?:\\.|_)[0-9]+)*)(?:-SNAPSHOT)?(?:-[0-9a-f]{7})?)" + suffix + '$';
+ final String patternString = '^' + artifactId + "(?:(?:[0-9]+(?:(?:\\.|_)[0-9]+)*)(?:-SNAPSHOT)?(?:-patched)?(?:-[0-9a-f]{7})?)" + suffix + '$';
84
final Pattern pattern = Pattern.compile(patternString);
85
final Matcher matcher = pattern.matcher("");
86
0 commit comments