forked from esacinc/sdcct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions-rules.xml
72 lines (69 loc) · 3.32 KB
/
versions-rules.xml
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
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="UTF-8"?>
<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 http://www.mojohaus.org/versions-maven-plugin/xsd/rule-2.0.0.xsd">
<!--====================================================================================================
= GLOBAL
=====================================================================================================-->
<ignoreVersions>
<ignoreVersion type="regex">.*[\-\._](?i:alpha|beta).*</ignoreVersion>
<ignoreVersion type="regex">.*[\-\._](?i:(?:b|cr|m|rc)\d+).*</ignoreVersion>
</ignoreVersions>
<rules>
<!--====================================================================================================
= APACHE HTTP COMPONENTS
=====================================================================================================-->
<!--
Do not upgrade past v4.4.4 due to required annotations (by SoapUI).
-->
<rule groupId="org.apache.httpcomponents" artifactId="httpclient">
<ignoreVersions>
<ignoreVersion type="regex">.+</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.apache.httpcomponents" artifactId="httpclient-cache">
<ignoreVersions>
<ignoreVersion type="regex">.+</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.apache.httpcomponents" artifactId="httpcore">
<ignoreVersions>
<ignoreVersion type="regex">.+</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.apache.httpcomponents" artifactId="httpmime">
<ignoreVersions>
<ignoreVersion type="regex">.+</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.apache.httpcomponents" artifactId="httpcore-nio">
<ignoreVersions>
<ignoreVersion type="regex">.+</ignoreVersion>
</ignoreVersions>
</rule>
<!--====================================================================================================
= JAXB2 COMMONS
=====================================================================================================-->
<!--
Do not upgrade to v1.11.1 due to it's apparent accidental publication.
-->
<rule groupId="org.jvnet.jaxb2_commons" artifactId="jaxb2-basics">
<ignoreVersions>
<ignoreVersion type="regex">1\.11\.1(?:\-PUBLISHED\-BY\-MISTAKE)?</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.jvnet.jaxb2_commons" artifactId="jaxb2-basics-runtime">
<ignoreVersions>
<ignoreVersion type="regex">1\.11\.1(?:\-PUBLISHED\-BY\-MISTAKE)?</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.jvnet.jaxb2_commons" artifactId="jaxb2-basics-tools">
<ignoreVersions>
<ignoreVersion type="regex">1\.11\.1(?:\-PUBLISHED\-BY\-MISTAKE)?</ignoreVersion>
</ignoreVersions>
</rule>
</rules>
</ruleset>