-
-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathrules.xml
More file actions
29 lines (27 loc) · 1.47 KB
/
rules.xml
File metadata and controls
29 lines (27 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<ruleset comparisonMethod="maven"
xmlns="http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0 https://www.mojohaus.org/versions-maven-plugin/xsd/rule-2.0.0.xsd">
<!--
rules for the versions-maven-plugin
Used when running the mvn versions:display-dependency-updates goal
-->
<!-- General ignore rules -->
<ignoreVersions>
<ignoreVersion type="regex">(?i).*[.-](alpha|a)[.-]?\d*.*</ignoreVersion>
<ignoreVersion type="regex">(?i).*[.-](beta|b)[.-]?\d*.*</ignoreVersion>
<ignoreVersion type="regex">(?i).*[.-](milestone|m)[.-]?\d*.*</ignoreVersion>
<ignoreVersion type="regex">(?i).*[.-](rc|cr)[.-]?\d*.*</ignoreVersion>
<ignoreVersion type="regex">(?i).*[.-](preview|ea|prerelease|pre)[.-]?\d*.*</ignoreVersion>
</ignoreVersions>
<!-- Specific rule for com.graphql-java:graphql-java to ignore non-standard versions -->
<rules>
<rule groupId="com.graphql-java" artifactId="graphql-java" comparisonMethod="maven">
<ignoreVersions>
<!-- Ignore versions that are not exactly MAJOR.MINOR or MAJOR.MINOR.PATCH;
allowed: 24.1, 24.1.0; ignored: 24, 24.1.0.1, 24.1-beta -->
<ignoreVersion type="regex">^(?!\d+\.\d+(?:\.\d+)?$).*$</ignoreVersion>
</ignoreVersions>
</rule>
</rules>
</ruleset>