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/31 17:32:55 UTC

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

Author: jukka
Date: Mon Oct 31 16:32:54 2011
New Revision: 1195554

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

Fix clirr configuration, and mark it as skipped until 1.0 due to the intentionally backwards-incompatible changes after 0.10

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=1195554&r1=1195553&r2=1195554&view=diff
==============================================================================
--- tika/trunk/tika-core/pom.xml (original)
+++ tika/trunk/tika-core/pom.xml Mon Oct 31 16:32:54 2011
@@ -90,6 +90,17 @@
             <goals>
               <goal>check</goal>
             </goals>
+            <configuration>
+              <skip>true</skip>
+              <comparisonArtifacts>
+                <comparisonArtifact>
+                  <groupId>org.apache.tika</groupId>
+                  <artifactId>tika-core</artifactId>
+                  <version>0.10</version>
+                  <type>jar</type>
+                </comparisonArtifact>
+              </comparisonArtifacts>
+            </configuration>
           </execution>
         </executions>
       </plugin>