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.
2 parents f473d74 + 3c2b69c commit 21d8c31Copy full SHA for 21d8c31
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