Skip to content

Commit b9367b8

Browse files
committed
Fix the jetty ignore rule
Jetty does not use SemVer style (10.0.0-alpha-1), but rather an additional dot (10.0.0.alpha1).
1 parent d33040e commit b9367b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</rule>
4545
<rule groupId="org.eclipse.jetty" artifactId="*" comparisonMethod="maven">
4646
<ignoreVersions>
47-
<ignoreVersion type="regex">.*-(alpha|beta|rc)-?[0-9]+</ignoreVersion>
47+
<ignoreVersion type="regex">.*[-\.](alpha|beta|rc)-?[0-9]+</ignoreVersion>
4848
<ignoreVersion type="regex">.*\.RC[0-9]+</ignoreVersion>
4949
</ignoreVersions>
5050
</rule>

0 commit comments

Comments
 (0)