CCM NG: Configuration versions-maven-plugin
git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@4891 8810af33-2d31-482b-a856-94f89814c4df
parent
63ca5f73ef
commit
25dabf19e0
|
|
@ -0,0 +1,25 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<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">
|
||||||
|
<rules>
|
||||||
|
<!--
|
||||||
|
<rule groupId="*.maven" comparisonMethod="mercury"/>
|
||||||
|
<rule groupId="com.mycompany" comparisonMethod="numeric"/>
|
||||||
|
<rule groupId="com.mycompany.maven" comparisonMethod="maven"/>
|
||||||
|
<rule groupId="com.mycompany.maven" artifactId="old-maven-plugin" comparisonMethod="mercury"/>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<rule groupId="commons-collections" artifactId="commons-collections">
|
||||||
|
<ignoreVersions>
|
||||||
|
<ignoreVersion type="regex">2003.*</ignoreVersion>
|
||||||
|
<ignoreVersion type="regex">2004.*</ignoreVersion>
|
||||||
|
</ignoreVersions>
|
||||||
|
</rule>
|
||||||
|
<rule groupId="commons-primitives" artifactId="commons-primitives">
|
||||||
|
<ignoreVersions>
|
||||||
|
<ignoreVersion type="regex">2004.*</ignoreVersion>
|
||||||
|
</ignoreVersions>
|
||||||
|
</rule>
|
||||||
|
</rules>
|
||||||
|
</ruleset>
|
||||||
11
pom.xml
11
pom.xml
|
|
@ -93,6 +93,9 @@
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>versions-maven-plugin</artifactId>
|
<artifactId>versions-maven-plugin</artifactId>
|
||||||
<version>2.4</version>
|
<version>2.4</version>
|
||||||
|
<configuration>
|
||||||
|
<rulesUri>file:///${session.executionRootDirectory}/maven-version-rules.xml</rulesUri>
|
||||||
|
</configuration>
|
||||||
<reportSets>
|
<reportSets>
|
||||||
<reportSet>
|
<reportSet>
|
||||||
<reports>
|
<reports>
|
||||||
|
|
@ -288,6 +291,14 @@
|
||||||
<skip>true</skip>
|
<skip>true</skip>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>versions-maven-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<rulesUri>file:///${session.executionRootDirectory}/maven-version-rules.xml</rulesUri>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue