Author: jukka
Date: Thu Mar  5 21:22:21 2009
New Revision: 750593

URL: http://svn.apache.org/viewvc?rev=750593&view=rev
Log:
TIKA-152: Support for Office XML files

Use the StAX API jar from Geronimo as the licensing of the official StAX API is 
a bit troublesome.

See https://issues.apache.org/jira/browse/LEGAL-42 and 
https://issues.apache.org/bugzilla/show_bug.cgi?id=46758 for background.

Modified:
    lucene/tika/trunk/pom.xml

Modified: lucene/tika/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/lucene/tika/trunk/pom.xml?rev=750593&r1=750592&r2=750593&view=diff
==============================================================================
--- lucene/tika/trunk/pom.xml (original)
+++ lucene/tika/trunk/pom.xml Thu Mar  5 21:22:21 2009
@@ -214,6 +214,17 @@
       <groupId>org.apache.poi</groupId>
       <artifactId>poi-ooxml</artifactId>
       <version>3.5-beta5</version>
+      <exclusions>
+        <exclusion>
+          <groupId>stax</groupId>
+          <artifactId>stax-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-stax-api_1.0_spec</artifactId>
+      <version>1.0</version>
     </dependency>
     <dependency>
       <groupId>net.sourceforge.nekohtml</groupId>


Reply via email to