-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathversions-rules.xml
53 lines (49 loc) · 2.26 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
ao-payments-api - Payment processing API supporting multiple payment gateways.
Copyright (C) 2020, 2021, 2022, 2024, 2025 AO Industries, Inc.
support@aoindustries.com
7262 Bull Pen Cir
Mobile, AL 36695
This file is part of ao-payments-api.
ao-payments-api is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
ao-payments-api 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with ao-payments-api. If not, see <https://www.gnu.org/licenses/>.
-->
<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>
<rule groupId="commons-beanutils" artifactId="commons-beanutils" comparisonMethod="maven">
<ignoreVersions>
<!--
TODO: commons-beanutils-1.10.0 includes a new module-info.class specifying a new module name of
"org.apache.commons.beanutils" while commons-validator-1.9.0 references the old name "commons.beanutils".
Stay on commons-beanutils-1.9.4 util commons-validator-1.9.0 is updated to reference the new module name.
-->
<ignoreVersion type="exact">1.10.0</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="commons-collections" artifactId="commons-collections" comparisonMethod="maven">
<ignoreVersions>
<!-- Skip old YYYYMMDD versions -->
<ignoreVersion type="regex">[0-9]{8}.*</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.hamcrest" comparisonMethod="maven">
<ignoreVersions>
<ignoreVersion type="regex">.*-rc[0-9]+</ignoreVersion>
</ignoreVersions>
</rule>
</rules>
</ruleset>