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:14:34 UTC

svn commit: r1633787 - in /manifoldcf/branches/dev_1x: ./ CHANGES.txt connectors/tika/build.xml

Author: kwright
Date: Thu Oct 23 10:14:34 2014
New Revision: 1633787

URL: http://svn.apache.org/r1633787
Log:
Pull up fix for CONNECTORS-1079 from trunk.

Modified:
    manifoldcf/branches/dev_1x/   (props changed)
    manifoldcf/branches/dev_1x/CHANGES.txt
    manifoldcf/branches/dev_1x/connectors/tika/build.xml

Propchange: manifoldcf/branches/dev_1x/
------------------------------------------------------------------------------
  Merged /manifoldcf/trunk:r1633786

Modified: manifoldcf/branches/dev_1x/CHANGES.txt
URL: http://svn.apache.org/viewvc/manifoldcf/branches/dev_1x/CHANGES.txt?rev=1633787&r1=1633786&r2=1633787&view=diff
==============================================================================
--- manifoldcf/branches/dev_1x/CHANGES.txt (original)
+++ manifoldcf/branches/dev_1x/CHANGES.txt Thu Oct 23 10:14:34 2014
@@ -3,6 +3,10 @@ $Id$
 
 ======================= 1.8-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/branches/dev_1x/connectors/tika/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/dev_1x/connectors/tika/build.xml?rev=1633787&r1=1633786&r2=1633787&view=diff
==============================================================================
--- manifoldcf/branches/dev_1x/connectors/tika/build.xml (original)
+++ manifoldcf/branches/dev_1x/connectors/tika/build.xml Thu Oct 23 10:14:34 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"/>