Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ow2
OW2 MRL
Commits
8b0047c0
Commit
8b0047c0
authored
Jan 29, 2021
by
Antoine Mottier
Browse files
Simplify rules for maven versions plugin
parent
2848d57a
Pipeline
#10890
passed with stages
in 6 minutes and 18 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rules.xml
View file @
8b0047c0
...
...
@@ -3,15 +3,9 @@
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"
>
<ignoreVersions>
<!-- Ignore Alpha's, Beta's, release candidates and milestones -->
<ignoreVersion
type=
"regex"
>
(?i).*Alpha(?:-?\d+)?
</ignoreVersion>
<!--<ignoreVersion type="regex">(?i).*a(?:-?\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>
<!-- Ignore Alpha's, Beta's, release candidates -->
<ignoreVersion
type=
"regex"
>
.*[-_\.](alpha|Alpha|ALPHA|b|beta|Beta|BETA|rc|RC|EA)[-_\.]?[0-9]*
</ignoreVersion>
<!-- Not ignoring M (milestone) releases are they are used for "stable" Maven plugin releases -->
<!--<ignoreVersion type="regex">(?i).*M(?:-?\d+)?</ignoreVersion>-->
</ignoreVersions>
<rules>
</rules>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment