You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2014/10/23 12:13:16 UTC

svn commit: r1633786 - in /manifoldcf/trunk: CHANGES.txt connectors/tika/build.xml

Author: kwright
Date: Thu Oct 23 10:13:15 2014
New Revision: 1633786

URL: http://svn.apache.org/r1633786
Log:
Fix for CONNECTORS-1079.

Modified:
    manifoldcf/trunk/CHANGES.txt
    manifoldcf/trunk/connectors/tika/build.xml

Modified: manifoldcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1633786&r1=1633785&r2=1633786&view=diff
==============================================================================
--- manifoldcf/trunk/CHANGES.txt (original)
+++ manifoldcf/trunk/CHANGES.txt Thu Oct 23 10:13:15 2014
@@ -3,6 +3,10 @@ $Id$
 
 ======================= 2.0-dev =====================
 
+CONNECTORS-1079: Fix Tika extractor; tika core must be in connector-lib
+as well as in root jars.
+(Mingchun Zhao, Karl Wright)
+
 CONNECTORS-1078: Improve end-user documentation for the JDBC
 connection type.
 (Jens Jahnke, Karl Wright)

Modified: manifoldcf/trunk/connectors/tika/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/tika/build.xml?rev=1633786&r1=1633785&r2=1633786&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/tika/build.xml (original)
+++ manifoldcf/trunk/connectors/tika/build.xml Thu Oct 23 10:13:15 2014
@@ -72,6 +72,7 @@
         </fileset>
     </path>
 
+
     <target name="lib" depends="mcf-connector-build.lib,precompile-check" if="canBuild">
         <mkdir dir="dist/lib"/>
         <copy todir="dist/lib">
@@ -79,6 +80,8 @@
                 <include name="jackson-core*.jar"/>
                 <include name="jackson-databind*.jar"/>
                 <include name="jackson-annotations*.jar"/>
+                <!-- Note: tika-core MUST be placed in connector-lib, or tika doesn't work.  CONNECTORS-1079 -->
+                <include name="tika-core*.jar"/>
                 <include name="tika-parsers*.jar"/>
                 <include name="tagsoup*.jar"/>
                 <include name="poi*.jar"/>