Author: nick
Date: Thu Aug 28 07:30:38 2014
New Revision: 1621077
URL: http://svn.apache.org/r1621077
Log:
Patch from Uwe - disable the forbidden API check on the Tika Bundle, which has
no java code of its own, as the way we unpack classes before bundling confuses
the checker. TIKA-1387
Modified:
tika/trunk/tika-bundle/pom.xml
Modified: tika/trunk/tika-bundle/pom.xml
URL:
http://svn.apache.org/viewvc/tika/trunk/tika-bundle/pom.xml?rev=1621077&r1=1621076&r2=1621077&view=diff
==============================================================================
--- tika/trunk/tika-bundle/pom.xml (original)
+++ tika/trunk/tika-bundle/pom.xml Thu Aug 28 07:30:38 2014
@@ -251,6 +251,16 @@
</execution>
</executions>
</plugin>
+
+ <!-- The Tika Bundle has no java code of its own, so no need to do -->
+ <!-- any forbidden API checking against it (it gets confused...) -->
+ <plugin>
+ <groupId>de.thetaphi</groupId>
+ <artifactId>forbiddenapis</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
</build>