-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathversion-number-rules.xml
More file actions
64 lines (59 loc) · 3.11 KB
/
Copy pathversion-number-rules.xml
File metadata and controls
64 lines (59 loc) · 3.11 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!--
Copyright © 2013 Sven Ruppert (sven.ruppert@gmail.com)
Licensed under the EUPL, Version 1.2 (the "Licence");
you may not use this file except in compliance with the Licence.
You may obtain a copy of the Licence at:
https://joinup.ec.europa.eu/software/page/eupl
Unless required by applicable law or agreed to in writing, software
distributed under the Licence is distributed on an "AS IS" basis,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the Licence for the specific language governing permissions and
limitations under the Licence.
-->
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
comparisonMethod="maven" xmlns="https://www.mojohaus.org/VERSIONS/RULE/2.1.0"
xsi:schemaLocation="https://www.mojohaus.org/VERSIONS/RULE/2.1.0 https://www.mojohaus.org/versions/versions-model/xsd/rule-2.1.0.xsd">
<ignoreVersions>
<ignoreVersion type="regex">(?i).*[-_\.]CR[0-9\.]*</ignoreVersion>
<ignoreVersion type="regex">(?i).*[-_\.]rc[0-9\.]*</ignoreVersion>
<ignoreVersion type="regex">(?i).*[-_\.]beta[0-9\.-]*</ignoreVersion>
<ignoreVersion type="regex">(?i).*[-_\.]alpha[0-9\.-]*</ignoreVersion>
<ignoreVersion type="regex">(?i).*[-_\.]Alpha</ignoreVersion>
<ignoreVersion type="regex">(?i).*[-_\.]nightly[0-9\.]*</ignoreVersion>
<ignoreVersion type="regex">(?i).*[-_\.]jboss[0-9\.]*</ignoreVersion>
<ignoreVersion type="regex">(?i).*-atlassian-[0-9\.]*</ignoreVersion>
<ignoreVersion type="regex">(?i).*-jenkins-[0-9\.]*</ignoreVersion>
<ignoreVersion type="regex">.*[-\.]redhat-[0-9]+</ignoreVersion>
<ignoreVersion type="regex">\d{4,}.*
</ignoreVersion> <!-- z.B. commons-collections:commons-collections ... 3.2.1.redhat-7 -> 20040117.000000 -->
</ignoreVersions>
<rules>
<rule groupId="org.cache2k" comparisonMethod="maven">
<ignoreVersions>
<ignoreVersion>1.3.1.Alpha</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.slf4j" comparisonMethod="maven">
<ignoreVersions>
<ignoreVersion type="regex">.*-xwiki</ignoreVersion>
<ignoreVersion type="regex">.*-alpha*</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.apache.maven.plugins" artifactId="maven-surefire-plugin" comparisonMethod="maven">
<ignoreVersions>
<ignoreVersion>9c6abc2</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.codehaus.mojo" artifactId="properties-maven-plugin" comparisonMethod="maven">
<ignoreVersions>
<ignoreVersion type="regex">.*-tc</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="javax.portlet" artifactId="portlet-api" comparisonMethod="maven">
<ignoreVersions>
<ignoreVersion type="regex">.*-r\d+</ignoreVersion>
<ignoreVersion type="regex">.*-Draft\d+</ignoreVersion>
</ignoreVersions>
</rule>
</rules>
</ruleset>