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 2015/07/07 11:02:33 UTC

svn commit: r1689608 - in /manifoldcf/trunk: build.xml connectors/elasticsearch/build.xml

Author: kwright
Date: Tue Jul  7 09:02:32 2015
New Revision: 1689608

URL: http://svn.apache.org/r1689608
Log:
Include mcf elasticsearch-1.5 plugin

Modified:
    manifoldcf/trunk/build.xml
    manifoldcf/trunk/connectors/elasticsearch/build.xml

Modified: manifoldcf/trunk/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/build.xml?rev=1689608&r1=1689607&r2=1689608&view=diff
==============================================================================
--- manifoldcf/trunk/build.xml (original)
+++ manifoldcf/trunk/build.xml Tue Jul  7 09:02:32 2015
@@ -1481,11 +1481,18 @@ Use Apache Forrest version forrest-0.9-d
         <mkdir dir="lib/elasticsearch"/>
         <!-- Download and unpack binary artifact -->
         <mkdir dir="build/download"/>
+        <mkdir dir="lib/elasticsearch"/>
         <get src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-elasticsearch-plugin-2.0/apache-manifoldcf-elasticsearch-plugin-2.0-bin.zip" dest="build/download/apache-manifoldcf-elasticsearch-plugin-bin.zip"/>
         <unzip src="build/download/apache-manifoldcf-elasticsearch-plugin-bin.zip" dest="build/download/apache-manifoldcf-elasticsearch-plugin-bin"/>
         <copy todir="lib/elasticsearch">
             <fileset dir="build/download/apache-manifoldcf-elasticsearch-plugin-bin/elasticsearch-plugin-mcf-2.0"/>
         </copy>
+        <mkdir dir="lib/elasticsearch-1.5"/>
+        <get src="https://www.apache.org/dist/manifoldcf/apache-manifoldcf-elasticsearch-1.5-plugin-2.0/apache-manifoldcf-elasticsearch-1.5-plugin-2.0-bin.zip" dest="build/download/apache-manifoldcf-elasticsearch-1.5-plugin-bin.zip"/>
+        <unzip src="build/download/apache-manifoldcf-elasticsearch-1.5-plugin-bin.zip" dest="build/download/apache-manifoldcf-elasticsearch-1.5-plugin-bin"/>
+        <copy todir="lib/elasticsearch-1.5">
+            <fileset dir="build/download/apache-manifoldcf-elasticsearch-1.5-plugin-bin/elasticsearch-1.5-plugin-mcf-2.0"/>
+        </copy>
     </target>
 
    <target name="download-dropbox-client">

Modified: manifoldcf/trunk/connectors/elasticsearch/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/elasticsearch/build.xml?rev=1689608&r1=1689607&r2=1689608&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/elasticsearch/build.xml (original)
+++ manifoldcf/trunk/connectors/elasticsearch/build.xml Tue Jul  7 09:02:32 2015
@@ -68,6 +68,10 @@
         <copy todir="dist/integration/elasticsearch">
           <fileset dir="../../lib/elasticsearch"/>
         </copy>
+        <mkdir dir="dist/integration/elasticsearch-1.5"/>
+        <copy todir="dist/integration/elasticsearch-1.5">
+          <fileset dir="../../lib/elasticsearch-1.5"/>
+        </copy>
     </target>
 
     <target name="calculate-testcode-condition">