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 2012/07/05 17:03:26 UTC

svn commit: r1357658 - in /manifoldcf/trunk: CHANGES.txt build.xml

Author: kwright
Date: Thu Jul  5 15:03:25 2012
New Revision: 1357658

URL: http://svn.apache.org/viewvc?rev=1357658&view=rev
Log:
Fix for CONNECTORS-485.  Use solr plugin version 0.2

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

Modified: manifoldcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1357658&r1=1357657&r2=1357658&view=diff
==============================================================================
--- manifoldcf/trunk/CHANGES.txt (original)
+++ manifoldcf/trunk/CHANGES.txt Thu Jul  5 15:03:25 2012
@@ -3,6 +3,9 @@ $Id$
 
 ======================= 0.6-dev =====================
 
+CONNECTORS-485: Upgrade to manifoldcf solr plugin versions 0.2.
+(Karl Wright)
+
 CONNECTORS-99: Improve documentation for JSON in REST services so
 that syntactic simplifications made by ManifoldCF are spelled out.
 (Karl Wright)

Modified: manifoldcf/trunk/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/build.xml?rev=1357658&r1=1357657&r2=1357658&view=diff
==============================================================================
--- manifoldcf/trunk/build.xml (original)
+++ manifoldcf/trunk/build.xml Thu Jul  5 15:03:25 2012
@@ -3391,15 +3391,15 @@ Use Apache Forrest version forrest-0.9-d
     <target name="download-solr-plugins">
         <mkdir dir="lib"/>
         <mkdir dir="build/download"/>
-        <get src="http://archive.apache.org/dist/incubator/manifoldcf/apache-manifoldcf-solr-3.x-plugin-0.1-incubating-bin.zip" dest="build/download/apache-manifoldcf-solr-3.x-plugin-bin.zip"/>
+        <get src="http://archive.apache.org/dist/manifoldcf/apache-manifoldcf-solr-3.x-plugin-0.2-incubating-bin.zip" dest="build/download/apache-manifoldcf-solr-3.x-plugin-bin.zip"/>
         <unzip src="build/download/apache-manifoldcf-solr-3.x-plugin-bin.zip" dest="build/download/apache-manifoldcf-solr-3.x-plugin-bin"/>
         <copy todir="lib">
-            <fileset dir="build/download/apache-manifoldcf-solr-3.x-plugin-bin/apache-manifoldcf-solr-3.x-plugin-0.1-incubating/dist"/>
+            <fileset dir="build/download/apache-manifoldcf-solr-3.x-plugin-bin/apache-manifoldcf-solr-3.x-plugin-0.2/dist"/>
         </copy>
-        <get src="http://archive.apache.org/dist/incubator/manifoldcf/apache-manifoldcf-solr-4.x-plugin-0.1-incubating-bin.zip" dest="build/download/apache-manifoldcf-solr-4.x-plugin-bin.zip"/>
+        <get src="http://archive.apache.org/dist/manifoldcf/apache-manifoldcf-solr-4.x-plugin-0.2-incubating-bin.zip" dest="build/download/apache-manifoldcf-solr-4.x-plugin-bin.zip"/>
         <unzip src="build/download/apache-manifoldcf-solr-4.x-plugin-bin.zip" dest="build/download/apache-manifoldcf-solr-4.x-plugin-bin"/>
         <copy todir="lib">
-            <fileset dir="build/download/apache-manifoldcf-solr-4.x-plugin-bin/apache-manifoldcf-solr-4.x-plugin-0.1-incubating/dist"/>
+            <fileset dir="build/download/apache-manifoldcf-solr-4.x-plugin-bin/apache-manifoldcf-solr-4.x-plugin-0.2/dist"/>
         </copy>
     </target>