Skip to content

Instantly share code, notes, and snippets.

@efenderbosch
Created May 8, 2017 19:06
Show Gist options
  • Save efenderbosch/cd80636daee4640b469b685cc6cf5d54 to your computer and use it in GitHub Desktop.
Save efenderbosch/cd80636daee4640b469b685cc6cf5d54 to your computer and use it in GitHub Desktop.
versions-maven-plugin ruleset
<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">
<!-- when running mvn versions:display-dependency-updates (or reports), ignore beta and alpha releases -->
<ignoreVersions>
<ignoreVersion type="regex">.*-atlassian-.*</ignoreVersion>
</ignoreVersions>
<rules>
<rule groupId="com.fasterxml.jackson">
<ignoreVersions>
<ignoreVersion type="regex">.*pr[0-9]</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="com.google.guava">
<ignoreVersions>
<ignoreVersion type="regex">.*-rc[0-9]</ignoreVersion>
<ignoreVersion type="regex">.*-rc[0-9]-android</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.slf4j">
<ignoreVersions>
<ignoreVersion type="regex">.*-alpha[0-9]</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="org.ow2.asm">
<ignoreVersions>
<ignoreVersion type="regex">.*_ALPHA</ignoreVersion>
</ignoreVersions>
</rule>
</rules>
</ruleset>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment