You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2013/05/03 10:58:27 UTC

[08/27] git commit: Disable Clirr until 7.0.0 is released

Disable Clirr until 7.0.0 is released


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/434e802f
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/434e802f
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/434e802f

Branch: refs/heads/wicket-4774
Commit: 434e802fda717c24fe84ced5c115269656fef70f
Parents: 60abd1c
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Wed May 1 08:43:33 2013 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Thu May 2 15:56:46 2013 +0200

----------------------------------------------------------------------
 pom.xml |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/434e802f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index faefbd7..70fbc4f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -838,12 +838,13 @@
 					<artifactId>clirr-maven-plugin</artifactId>
 					<version>2.5</version>
 					<configuration>
+						<skip>true</skip> <!-- Disabled until 7.0 -->
 						<comparisonVersion>6.0.0</comparisonVersion>
 						<failOnError>true</failOnError>
 						<logResults>true</logResults>
 						<ignored>
 							<difference>
-								<!-- FeedbackCollector used to be final. Now it is non-final and so all existing methods were made final to keep them non-overridable. However, clirr does not take into account the class going from final to non-finall and thinks overridable methods were made final. We ignore this change to silence it. -->
+								<!-- FeedbackCollector used to be final. Now it is non-final and so all existing methods were made final to keep them non-overridable. However, clirr does not take into account the class going from final to non-final and thinks overridable methods were made final. We ignore this change to silence it. -->
 								<className>org${file.separator}apache${file.separator}wicket${file.separator}feedback${file.separator}FeedbackCollector</className>
 								<method>*</method>
 								<differenceType>7014</differenceType>