Last active
May 26, 2016 22:19
-
-
Save koko-u/23e5c36cc8f672f94977b28e7a29cfd8 to your computer and use it in GitHub Desktop.
exclude beta version from versions-maven-plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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://mojo.codehaus.org/versions-maven-plugin/xsd/rule-2.0.0.xsd"> | |
<ignoreVersions> | |
<ignoreVersion type="regex">.*\.Beta\d*</ignoreVersion> | |
<ignoreVersion type="regex">.*-beta\d*</ignoreVersion> | |
<ignoreVersion type="regex">.*-b\d+</ignoreVersion> | |
<ignoreVersion type="regex">.*\.Alpha\d*</ignoreVersion> | |
<ignoreVersion type="regex">.*-alpha\d*</ignoreVersion> | |
<ignoreVersion type="regex">.*-rc\d*</ignoreVersion> | |
<ignoreVersion type="regex">.*\.M\d+</ignoreVersion> | |
</ignoreVersions> | |
<rules> | |
<rule groupId="*.maven" comparisonMethod="mercury"/> | |
</rules> | |
</ruleset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment