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>