You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2013/08/09 18:24:10 UTC

svn commit: r1512379 - /httpcomponents/httpcore/trunk/pom.xml

Author: olegk
Date: Fri Aug  9 16:24:10 2013
New Revision: 1512379

URL: http://svn.apache.org/r1512379
Log:
Upgraded API compatibility level to 4.3; added Clirr check to validate phase

Modified:
    httpcomponents/httpcore/trunk/pom.xml

Modified: httpcomponents/httpcore/trunk/pom.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/pom.xml?rev=1512379&r1=1512378&r2=1512379&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/pom.xml (original)
+++ httpcomponents/httpcore/trunk/pom.xml Fri Aug  9 16:24:10 2013
@@ -77,7 +77,7 @@
     <junit.version>4.9</junit.version>
     <mockito.version>1.8.5</mockito.version>
     <commons-logging.version>1.1.3</commons-logging.version>
-    <api.comparison.version>4.2</api.comparison.version>
+    <api.comparison.version>4.3</api.comparison.version>
     <hc.stylecheck.version>1</hc.stylecheck.version>
   </properties>
 
@@ -298,6 +298,15 @@
         <configuration>
           <comparisonVersion>${api.comparison.version}</comparisonVersion>
         </configuration>
+        <executions>
+          <execution>
+            <id>compatibility-check</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
       </plugin>
     </plugins>
   </build>