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 2010/02/17 12:33:24 UTC

svn commit: r910924 - /lucene/tika/trunk/tika-parsers/pom.xml

Author: jukka
Date: Wed Feb 17 11:33:23 2010
New Revision: 910924

URL: http://svn.apache.org/viewvc?rev=910924&view=rev
Log:
TIKA-370: Tika pom.xml is missing dependencies on bouncycastle jars needed by PDFBox

Modified:
    lucene/tika/trunk/tika-parsers/pom.xml

Modified: lucene/tika/trunk/tika-parsers/pom.xml
URL: http://svn.apache.org/viewvc/lucene/tika/trunk/tika-parsers/pom.xml?rev=910924&r1=910923&r2=910924&view=diff
==============================================================================
--- lucene/tika/trunk/tika-parsers/pom.xml (original)
+++ lucene/tika/trunk/tika-parsers/pom.xml Wed Feb 17 11:33:23 2010
@@ -54,6 +54,19 @@
       <artifactId>pdfbox</artifactId>
       <version>1.0.0</version>
     </dependency>
+    <!-- TIKA-370: PDFBox declares the Bouncy Castle dependencies
+         as optional, but we prefer to have them always to avoid
+         problems with encrypted PDFs. -->
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcmail-jdk15</artifactId>
+      <version>1.44</version>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15</artifactId>
+      <version>1.44</version>
+    </dependency>
     <dependency>
       <groupId>org.apache.poi</groupId>
       <artifactId>poi</artifactId>