You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ju...@apache.org on 2011/10/05 18:58:37 UTC

svn commit: r1179318 - /tika/trunk/tika-core/pom.xml

Author: jukka
Date: Wed Oct  5 16:58:37 2011
New Revision: 1179318

URL: http://svn.apache.org/viewvc?rev=1179318&view=rev
Log:
TIKA-699: Automatic checks against backwards-incompatible API changes

Add clirr-maven-plugin configuration for verifying backwards compatibility of tika-core. Note that the clirr plugin doesn't understand bundle packaging, so we need to explicitly specify the artifact to compare against.

Modified:
    tika/trunk/tika-core/pom.xml

Modified: tika/trunk/tika-core/pom.xml
URL: http://svn.apache.org/viewvc/tika/trunk/tika-core/pom.xml?rev=1179318&r1=1179317&r2=1179318&view=diff
==============================================================================
--- tika/trunk/tika-core/pom.xml (original)
+++ tika/trunk/tika-core/pom.xml Wed Oct  5 16:58:37 2011
@@ -81,6 +81,18 @@
           </excludes>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>clirr-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>verify</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>