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 2012/10/15 13:36:03 UTC

git commit: Upgrade Clirr plugin and enable it by default at 'compile' phase.

Updated Branches:
  refs/heads/master e796c6e8b -> 71d4465dc


Upgrade Clirr plugin and enable it by default at 'compile' phase.


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

Branch: refs/heads/master
Commit: 71d4465dc18c8f302a6ffa5c502c8783e55da6fb
Parents: e796c6e
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Mon Oct 15 13:35:36 2012 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Mon Oct 15 13:35:36 2012 +0200

----------------------------------------------------------------------
 pom.xml |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/71d4465d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index ce18916..1afa643 100644
--- a/pom.xml
+++ b/pom.xml
@@ -512,14 +512,21 @@
 			<plugin>
 				<groupId>org.codehaus.mojo</groupId>
 				<artifactId>clirr-maven-plugin</artifactId>
-				<version>2.4</version>
+				<version>2.5</version>
 				<configuration>
 					<comparisonVersion>6.0.0</comparisonVersion>
-					<failOnError>false</failOnError>
+					<failOnError>true</failOnError>
 					<logResults>true</logResults>
-					<!-- disabled until we start the release candidates -->
-					<skip>false</skip>
 				</configuration>
+				<executions>
+					<execution>
+						<id>clirr-check</id>
+						<phase>compile</phase>
+						<goals>
+							<goal>check</goal>
+						</goals>
+					</execution>
+				</executions>
 			</plugin>
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>