-
Notifications
You must be signed in to change notification settings - Fork 2
/
maven-version-rules.xml
44 lines (43 loc) · 2.09 KB
/
maven-version-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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ This file is part of Waarp Project (named also Waarp or GG).
~
~ Copyright (c) 2019, Waarp SAS, and individual contributors by the @author
~ tags. See the COPYRIGHT.txt in the distribution for a full listing of
~ individual contributors.
~
~ All Waarp Project is free software: you can redistribute it and/or
~ modify it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or (at your
~ option) any later version.
~
~ Waarp is distributed in the hope that it will be useful, but WITHOUT ANY
~ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
~ A PARTICULAR PURPOSE. See the GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License along with
~ Waarp . If not, see <http://www.gnu.org/licenses/>.
-->
<ruleset xmlns="http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
comparisonMethod="maven"
xsi:schemaLocation="http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0 http://mojo.codehaus.org/versions-maven-plugin/xsd/rule-2.0.0.xsd">
<ignoreVersions>
<!-- Ignore Alpha's, Beta's, release candidates and milestones -->
<ignoreVersion type="regex">(?i).*Alpha(?:-?\d+)?</ignoreVersion>
<ignoreVersion type="regex">(?i).*Beta(?:-?\d+)?</ignoreVersion>
<ignoreVersion type="regex">(?i).*-B(?:-?\d+)?</ignoreVersion>
<ignoreVersion type="regex">(?i).*RC(?:-?\d+)?</ignoreVersion>
<ignoreVersion type="regex">(?i).*CR(?:-?\d+)?</ignoreVersion>
<ignoreVersion type="regex">(?i).*M(?:-?\d+)?</ignoreVersion>
</ignoreVersions>
<rules>
<rule groupId="dom4j" artifactId="dom4j">
<ignoreVersions>
<ignoreVersion type="exact">20040902.021138</ignoreVersion>
<ignoreVersion type="exact">1.6.1-jboss</ignoreVersion>
<ignoreVersion type="exact">1.6.1-brew</ignoreVersion>
</ignoreVersions>
</rule>
</rules>
</ruleset>