Skip to content
Snippets Groups Projects
Commit 12ecf08a authored by Vincent Massol's avatar Vincent Massol
Browse files

XCOMMONS-283: Upgrade to Maven Clirr plugin 2.5 and use more specific CLIRR excludes

XWIKI-8337: The News IRC Bot Listener doesn't work in multiwiki mode
* Use the new CLIRR ignore to ignore one violation only and not the whole file!
parent 3d5424f1
No related branches found
No related tags found
No related merge requests found
......@@ -246,6 +246,15 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<configuration>
<ignored>
<difference>
<className>org/xwiki/ircbot/IRCBot</className>
<method>void initialize(java.lang.String)</method>
<differenceType>7012</differenceType>
<justification>IRCBot is still a young API. Added a new initialize() method to support installing the
IRC Bot application in a subwiki</justification>
</difference>
</ignored>
<excludes>
<exclude>**/internal/**</exclude>
<exclude>**/test/**</exclude>
......@@ -261,9 +270,6 @@
<!-- Added a common method to all elements to set all the data from another element -->
<!-- Technically this does not really break anything because all elements are supposed to extends BaseElement -->
<exclude>com/xpn/xwiki/objects/ElementInterface</exclude>
<!-- IRCBot is still a young API. Added a new initialize() method to support installing the IRC Bot
application in a subwiki -->
<exclude>org/xwiki/ircbot/IRCBot</exclude>
</excludes>
</configuration>
</plugin>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment